OLD | NEW |
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 # The "19" is so that sites that sniff for version think that this is | 8 # The "19" is so that sites that sniff for version think that this is |
9 # something reasonably current; the "77.34.5" is a hint that this isn't a | 9 # something reasonably current; the "77.34.5" is a hint that this isn't a |
10 # standard Chrome. | 10 # standard Chrome. |
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
113 'shell/shell_devtools_frontend.cc', | 113 'shell/shell_devtools_frontend.cc', |
114 'shell/shell_devtools_frontend.h', | 114 'shell/shell_devtools_frontend.h', |
115 'shell/shell_download_manager_delegate.cc', | 115 'shell/shell_download_manager_delegate.cc', |
116 'shell/shell_download_manager_delegate.h', | 116 'shell/shell_download_manager_delegate.h', |
117 'shell/shell_javascript_dialog_manager.cc', | 117 'shell/shell_javascript_dialog_manager.cc', |
118 'shell/shell_javascript_dialog_manager.h', | 118 'shell/shell_javascript_dialog_manager.h', |
119 'shell/shell_javascript_dialog_gtk.cc', | 119 'shell/shell_javascript_dialog_gtk.cc', |
120 'shell/shell_javascript_dialog_mac.mm', | 120 'shell/shell_javascript_dialog_mac.mm', |
121 'shell/shell_javascript_dialog_win.cc', | 121 'shell/shell_javascript_dialog_win.cc', |
122 'shell/shell_javascript_dialog.h', | 122 'shell/shell_javascript_dialog.h', |
| 123 'shell/shell_layout_tests_android.cc', |
| 124 'shell/shell_layout_tests_android.h', |
123 'shell/shell_login_dialog_gtk.cc', | 125 'shell/shell_login_dialog_gtk.cc', |
124 'shell/shell_login_dialog_mac.mm', | 126 'shell/shell_login_dialog_mac.mm', |
125 'shell/shell_login_dialog.cc', | 127 'shell/shell_login_dialog.cc', |
126 'shell/shell_login_dialog.h', | 128 'shell/shell_login_dialog.h', |
127 'shell/shell_message_filter.cc', | 129 'shell/shell_message_filter.cc', |
128 'shell/shell_message_filter.h', | 130 'shell/shell_message_filter.h', |
129 'shell/shell_network_delegate.cc', | 131 'shell/shell_network_delegate.cc', |
130 'shell/shell_network_delegate.h', | 132 'shell/shell_network_delegate.h', |
131 'shell/shell_plugin_service_filter.cc', | 133 'shell/shell_plugin_service_filter.cc', |
132 'shell/shell_plugin_service_filter.h', | 134 'shell/shell_plugin_service_filter.h', |
(...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
611 }], # OS=="mac" | 613 }], # OS=="mac" |
612 ['OS=="android"', { | 614 ['OS=="android"', { |
613 'targets': [ | 615 'targets': [ |
614 { | 616 { |
615 # TODO(jrg): Update this action and other jni generators to only | 617 # TODO(jrg): Update this action and other jni generators to only |
616 # require specifying the java directory and generate the rest. | 618 # require specifying the java directory and generate the rest. |
617 'target_name': 'content_shell_jni_headers', | 619 'target_name': 'content_shell_jni_headers', |
618 'type': 'none', | 620 'type': 'none', |
619 'sources': [ | 621 'sources': [ |
620 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', | 622 'shell/android/browsertests_apk/src/org/chromium/content_browsertest
s_apk/ContentBrowserTestsActivity.java', |
| 623 'shell/android/java/src/org/chromium/content_shell/ShellLayoutTestUt
ils.java', |
621 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', | 624 'shell/android/java/src/org/chromium/content_shell/ShellManager.java
', |
622 'shell/android/java/src/org/chromium/content_shell/Shell.java', | 625 'shell/android/java/src/org/chromium/content_shell/Shell.java', |
623 ], | 626 ], |
624 'direct_dependent_settings': { | 627 'direct_dependent_settings': { |
625 'include_dirs': [ | 628 'include_dirs': [ |
626 '<(SHARED_INTERMEDIATE_DIR)/content/shell', | 629 '<(SHARED_INTERMEDIATE_DIR)/content/shell', |
627 ], | 630 ], |
628 }, | 631 }, |
629 'variables': { | 632 'variables': { |
630 'jni_gen_package': 'content/shell', | 633 'jni_gen_package': 'content/shell', |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
703 'native_lib_target': 'libcontent_shell_content_view', | 706 'native_lib_target': 'libcontent_shell_content_view', |
704 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], | 707 'additional_input_paths': ['<(PRODUCT_DIR)/content_shell/assets/cont
ent_shell.pak'], |
705 'asset_location': '<(ant_build_out)/content_shell/assets', | 708 'asset_location': '<(ant_build_out)/content_shell/assets', |
706 }, | 709 }, |
707 'includes': [ '../build/java_apk.gypi' ], | 710 'includes': [ '../build/java_apk.gypi' ], |
708 }, | 711 }, |
709 ], | 712 ], |
710 }], # OS=="android" | 713 }], # OS=="android" |
711 ] | 714 ] |
712 } | 715 } |
OLD | NEW |