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 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 'include_dirs': [ | 46 'include_dirs': [ |
47 '..', | 47 '..', |
48 ], | 48 ], |
49 'sources': [ | 49 'sources': [ |
50 'shell/layout_test_controller_bindings.cc', | 50 'shell/layout_test_controller_bindings.cc', |
51 'shell/layout_test_controller_bindings.h', | 51 'shell/layout_test_controller_bindings.h', |
52 'shell/paths_mac.h', | 52 'shell/paths_mac.h', |
53 'shell/paths_mac.mm', | 53 'shell/paths_mac.mm', |
54 'shell/shell.cc', | 54 'shell/shell.cc', |
55 'shell/shell.h', | 55 'shell/shell.h', |
| 56 'shell/shell_aura.cc', |
56 'shell/shell_gtk.cc', | 57 'shell/shell_gtk.cc', |
57 'shell/shell_mac.mm', | 58 'shell/shell_mac.mm', |
58 'shell/shell_win.cc', | 59 'shell/shell_win.cc', |
59 'shell/shell_application_mac.h', | 60 'shell/shell_application_mac.h', |
60 'shell/shell_application_mac.mm', | 61 'shell/shell_application_mac.mm', |
61 'shell/shell_browser_context.cc', | 62 'shell/shell_browser_context.cc', |
62 'shell/shell_browser_context.h', | 63 'shell/shell_browser_context.h', |
63 'shell/shell_browser_main.cc', | 64 'shell/shell_browser_main.cc', |
64 'shell/shell_browser_main.h', | 65 'shell/shell_browser_main.h', |
65 'shell/shell_browser_main_parts.cc', | 66 'shell/shell_browser_main_parts.cc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
130 'configurations': { | 131 'configurations': { |
131 'Debug_Base': { | 132 'Debug_Base': { |
132 'msvs_settings': { | 133 'msvs_settings': { |
133 'VCLinkerTool': { | 134 'VCLinkerTool': { |
134 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', | 135 'LinkIncremental': '<(msvs_large_module_debug_link_mode)', |
135 }, | 136 }, |
136 }, | 137 }, |
137 }, | 138 }, |
138 }, | 139 }, |
139 }], # OS=="win" | 140 }], # OS=="win" |
| 141 ['use_aura==1', { |
| 142 'sources/': [ |
| 143 ['exclude', 'shell/shell_gtk.cc'], |
| 144 ['exclude', 'shell/shell_win.cc'], |
| 145 ], |
| 146 }], |
140 ], | 147 ], |
141 }, | 148 }, |
142 { | 149 { |
143 'target_name': 'content_shell_resources', | 150 'target_name': 'content_shell_resources', |
144 'type': 'none', | 151 'type': 'none', |
145 'dependencies': [ | 152 'dependencies': [ |
146 'generate_content_shell_resources', | 153 'generate_content_shell_resources', |
147 ], | 154 ], |
148 'variables': { | 155 'variables': { |
149 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', | 156 'grit_out_dir': '<(SHARED_INTERMEDIATE_DIR)/content', |
(...skipping 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 '-buildfile', | 484 '-buildfile', |
478 '<(DEPTH)/content/shell/android/content_shell_apk.xml', | 485 '<(DEPTH)/content/shell/android/content_shell_apk.xml', |
479 ] | 486 ] |
480 } | 487 } |
481 ], | 488 ], |
482 }, | 489 }, |
483 ], | 490 ], |
484 }], # OS=="android" | 491 }], # OS=="android" |
485 ] | 492 ] |
486 } | 493 } |
OLD | NEW |