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 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
123 'shell/browser/shell_plugin_service_filter.cc', | 123 'shell/browser/shell_plugin_service_filter.cc', |
124 'shell/browser/shell_plugin_service_filter.h', | 124 'shell/browser/shell_plugin_service_filter.h', |
125 'shell/browser/shell_quota_permission_context.cc', | 125 'shell/browser/shell_quota_permission_context.cc', |
126 'shell/browser/shell_quota_permission_context.h', | 126 'shell/browser/shell_quota_permission_context.h', |
127 'shell/browser/shell_resource_dispatcher_host_delegate.cc', | 127 'shell/browser/shell_resource_dispatcher_host_delegate.cc', |
128 'shell/browser/shell_resource_dispatcher_host_delegate.h', | 128 'shell/browser/shell_resource_dispatcher_host_delegate.h', |
129 'shell/browser/shell_speech_recognition_manager_delegate.cc', | 129 'shell/browser/shell_speech_recognition_manager_delegate.cc', |
130 'shell/browser/shell_speech_recognition_manager_delegate.h', | 130 'shell/browser/shell_speech_recognition_manager_delegate.h', |
131 'shell/browser/shell_url_request_context_getter.cc', | 131 'shell/browser/shell_url_request_context_getter.cc', |
132 'shell/browser/shell_url_request_context_getter.h', | 132 'shell/browser/shell_url_request_context_getter.h', |
133 'shell/browser/shell_views.cc', | |
133 'shell/browser/shell_web_contents_view_delegate_android.cc', | 134 'shell/browser/shell_web_contents_view_delegate_android.cc', |
134 'shell/browser/shell_web_contents_view_delegate_creator.h', | 135 'shell/browser/shell_web_contents_view_delegate_creator.h', |
135 'shell/browser/shell_web_contents_view_delegate_gtk.cc', | 136 'shell/browser/shell_web_contents_view_delegate_gtk.cc', |
136 'shell/browser/shell_web_contents_view_delegate.h', | 137 'shell/browser/shell_web_contents_view_delegate.h', |
137 'shell/browser/shell_web_contents_view_delegate_mac.mm', | 138 'shell/browser/shell_web_contents_view_delegate_mac.mm', |
138 'shell/browser/shell_web_contents_view_delegate_win.cc', | 139 'shell/browser/shell_web_contents_view_delegate_win.cc', |
139 'shell/browser/shell_win.cc', | 140 'shell/browser/shell_win.cc', |
140 'shell/browser/webkit_test_controller.cc', | 141 'shell/browser/webkit_test_controller.cc', |
141 'shell/browser/webkit_test_controller.h', | 142 'shell/browser/webkit_test_controller.h', |
142 'shell/common/shell_content_client.cc', | 143 'shell/common/shell_content_client.cc', |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
207 # this combination is not yet supported on Android. | 208 # this combination is not yet supported on Android. |
208 'test_support_content', | 209 'test_support_content', |
209 ], | 210 ], |
210 }], # OS=="android" | 211 }], # OS=="android" |
211 ['(os_posix==1 and use_aura==1 and linux_use_tcmalloc==1) or (android_us e_tcmalloc==1)', { | 212 ['(os_posix==1 and use_aura==1 and linux_use_tcmalloc==1) or (android_us e_tcmalloc==1)', { |
212 'dependencies': [ | 213 'dependencies': [ |
213 # This is needed by content/app/content_main_runner.cc | 214 # This is needed by content/app/content_main_runner.cc |
214 '../base/allocator/allocator.gyp:allocator', | 215 '../base/allocator/allocator.gyp:allocator', |
215 ], | 216 ], |
216 }], | 217 }], |
217 ['use_aura==1', { | 218 ['use_aura==1 and toolkit_views==1', { |
218 'dependencies': [ | 219 'dependencies': [ |
219 '../ui/aura/aura.gyp:aura', | 220 '../ui/aura/aura.gyp:aura', |
220 '../ui/base/strings/ui_strings.gyp:ui_strings', | 221 '../ui/base/strings/ui_strings.gyp:ui_strings', |
221 '../ui/views/controls/webview/webview.gyp:webview', | 222 '../ui/views/controls/webview/webview.gyp:webview', |
222 '../ui/views/views.gyp:views', | 223 '../ui/views/views.gyp:views', |
223 '../ui/views/views.gyp:views_test_support', | 224 '../ui/views/views.gyp:views_test_support', |
224 '../ui/ui.gyp:ui_resources', | 225 '../ui/ui.gyp:ui_resources', |
225 ], | 226 ], |
226 'sources/': [ | 227 'sources/': [ |
228 ['exclude', 'shell/browser/shell_aura.cc'], | |
227 ['exclude', 'shell/browser/shell_gtk.cc'], | 229 ['exclude', 'shell/browser/shell_gtk.cc'], |
228 ['exclude', 'shell/browser/shell_win.cc'], | 230 ['exclude', 'shell/browser/shell_win.cc'], |
229 ], | 231 ], |
230 }], # use_aura==1 | 232 }], # use_aura==1 and toolkit_views==1 |
233 ['use_aura==1 and toolkit_views==0', { | |
234 'dependencies': [ | |
235 '../ui/aura/aura.gyp:aura', | |
236 '../ui/base/strings/ui_strings.gyp:ui_strings', | |
Daniel Erat
2013/10/17 14:41:19
nit: is it possible to refactor these a bit furthe
sadrul
2013/10/18 13:05:19
Done.
| |
237 ], | |
238 'sources/': [ | |
239 ['exclude', 'shell/browser/shell_gtk.cc'], | |
240 ['exclude', 'shell/browser/shell_views.cc'], | |
241 ['exclude', 'shell/browser/shell_win.cc'], | |
242 ], | |
243 }], | |
231 ['chromeos==1', { | 244 ['chromeos==1', { |
232 'dependencies': [ | 245 'dependencies': [ |
233 '../chromeos/chromeos.gyp:chromeos', | 246 '../chromeos/chromeos.gyp:chromeos', |
234 '../ui/shell/shell.gyp:shell', | 247 '../ui/shell/shell.gyp:shell', |
235 ], | 248 ], |
236 }], # chromeos==1 | 249 }], # chromeos==1 |
237 ['use_ash==1', { | 250 ['use_ash==1', { |
238 'dependencies': [ | 251 'dependencies': [ |
239 '../ash/ash.gyp:ash', | 252 '../ash/ash.gyp:ash', |
240 ], | 253 ], |
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
780 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 793 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
781 '--destination_dir', '<(dest_dir)', | 794 '--destination_dir', '<(dest_dir)', |
782 ], | 795 ], |
783 }, | 796 }, |
784 ], | 797 ], |
785 }, | 798 }, |
786 ], | 799 ], |
787 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 800 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
788 ] | 801 ] |
789 } | 802 } |
OLD | NEW |