Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(739)

Side by Side Diff: content/content_shell.gypi

Issue 10828356: Very basic Android browser-side compositing support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: comments, make compositor non-singleton Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'variables': { 6 'variables': {
7 'content_shell_product_name': 'Content Shell', 7 'content_shell_product_name': 'Content Shell',
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 553 matching lines...) Expand 10 before | Expand all | Expand 10 after
564 'content_shell_pak', 564 'content_shell_pak',
565 # Skia is necessary to ensure the dependencies needed by 565 # Skia is necessary to ensure the dependencies needed by
566 # WebContents are included. 566 # WebContents are included.
567 '../skia/skia.gyp:skia', 567 '../skia/skia.gyp:skia',
568 '<(DEPTH)/media/media.gyp:player_android', 568 '<(DEPTH)/media/media.gyp:player_android',
569 ], 569 ],
570 'include_dirs': [ 570 'include_dirs': [
571 '<(SHARED_INTERMEDIATE_DIR)/content/shell', 571 '<(SHARED_INTERMEDIATE_DIR)/content/shell',
572 ], 572 ],
573 'sources': [ 573 'sources': [
574 'shell/android/draw_context.cc',
575 'shell/android/draw_context.h',
576 'shell/android/shell_library_loader.cc', 574 'shell/android/shell_library_loader.cc',
577 'shell/android/shell_library_loader.h', 575 'shell/android/shell_library_loader.h',
578 'shell/android/shell_manager.cc', 576 'shell/android/shell_manager.cc',
579 'shell/android/shell_manager.h', 577 'shell/android/shell_manager.h',
580 ], 578 ],
581 'sources!': [ 579 'sources!': [
582 'shell/shell_main.cc', 580 'shell/shell_main.cc',
583 'shell/shell_main.h', 581 'shell/shell_main.h',
584 ], 582 ],
585 'conditions': [ 583 'conditions': [
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
671 'dependencies': [ 669 'dependencies': [
672 'content_java', 670 'content_java',
673 ], 671 ],
674 } 672 }
675 ], 673 ],
676 }, 674 },
677 ], 675 ],
678 }], # OS=="android" 676 }], # OS=="android"
679 ] 677 ]
680 } 678 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698