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

Side by Side Diff: content/content_shell.gypi

Issue 26695007: aura: Allow creating content_shell without views. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: unrevert Created 7 years, 2 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
« no previous file with comments | « build/build_config.h ('k') | content/shell/DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # 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 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 'shell/browser/shell_plugin_service_filter.cc', 122 'shell/browser/shell_plugin_service_filter.cc',
123 'shell/browser/shell_plugin_service_filter.h', 123 'shell/browser/shell_plugin_service_filter.h',
124 'shell/browser/shell_quota_permission_context.cc', 124 'shell/browser/shell_quota_permission_context.cc',
125 'shell/browser/shell_quota_permission_context.h', 125 'shell/browser/shell_quota_permission_context.h',
126 'shell/browser/shell_resource_dispatcher_host_delegate.cc', 126 'shell/browser/shell_resource_dispatcher_host_delegate.cc',
127 'shell/browser/shell_resource_dispatcher_host_delegate.h', 127 'shell/browser/shell_resource_dispatcher_host_delegate.h',
128 'shell/browser/shell_speech_recognition_manager_delegate.cc', 128 'shell/browser/shell_speech_recognition_manager_delegate.cc',
129 'shell/browser/shell_speech_recognition_manager_delegate.h', 129 'shell/browser/shell_speech_recognition_manager_delegate.h',
130 'shell/browser/shell_url_request_context_getter.cc', 130 'shell/browser/shell_url_request_context_getter.cc',
131 'shell/browser/shell_url_request_context_getter.h', 131 'shell/browser/shell_url_request_context_getter.h',
132 'shell/browser/shell_views.cc',
132 'shell/browser/shell_web_contents_view_delegate_android.cc', 133 'shell/browser/shell_web_contents_view_delegate_android.cc',
133 'shell/browser/shell_web_contents_view_delegate_creator.h', 134 'shell/browser/shell_web_contents_view_delegate_creator.h',
134 'shell/browser/shell_web_contents_view_delegate_gtk.cc', 135 'shell/browser/shell_web_contents_view_delegate_gtk.cc',
135 'shell/browser/shell_web_contents_view_delegate.h', 136 'shell/browser/shell_web_contents_view_delegate.h',
136 'shell/browser/shell_web_contents_view_delegate_mac.mm', 137 'shell/browser/shell_web_contents_view_delegate_mac.mm',
137 'shell/browser/shell_web_contents_view_delegate_win.cc', 138 'shell/browser/shell_web_contents_view_delegate_win.cc',
138 'shell/browser/shell_win.cc', 139 'shell/browser/shell_win.cc',
139 'shell/browser/webkit_test_controller.cc', 140 'shell/browser/webkit_test_controller.cc',
140 'shell/browser/webkit_test_controller.h', 141 'shell/browser/webkit_test_controller.h',
141 'shell/common/shell_content_client.cc', 142 'shell/common/shell_content_client.cc',
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after
210 ['(os_posix==1 and use_aura==1 and linux_use_tcmalloc==1) or (android_us e_tcmalloc==1)', { 211 ['(os_posix==1 and use_aura==1 and linux_use_tcmalloc==1) or (android_us e_tcmalloc==1)', {
211 'dependencies': [ 212 'dependencies': [
212 # This is needed by content/app/content_main_runner.cc 213 # This is needed by content/app/content_main_runner.cc
213 '../base/allocator/allocator.gyp:allocator', 214 '../base/allocator/allocator.gyp:allocator',
214 ], 215 ],
215 }], 216 }],
216 ['use_aura==1', { 217 ['use_aura==1', {
217 'dependencies': [ 218 'dependencies': [
218 '../ui/aura/aura.gyp:aura', 219 '../ui/aura/aura.gyp:aura',
219 '../ui/base/strings/ui_strings.gyp:ui_strings', 220 '../ui/base/strings/ui_strings.gyp:ui_strings',
220 '../ui/views/controls/webview/webview.gyp:webview',
221 '../ui/views/views.gyp:views',
222 '../ui/views/views.gyp:views_test_support',
223 '../ui/ui.gyp:ui_resources',
224 ], 221 ],
225 'sources/': [ 222 'sources/': [
226 ['exclude', 'shell/browser/shell_gtk.cc'], 223 ['exclude', 'shell/browser/shell_gtk.cc'],
227 ['exclude', 'shell/browser/shell_win.cc'], 224 ['exclude', 'shell/browser/shell_win.cc'],
228 ], 225 ],
226 'conditions': [
227 ['toolkit_views==1', {
228 'dependencies': [
229 '../ui/views/controls/webview/webview.gyp:webview',
230 '../ui/views/views.gyp:views',
231 '../ui/views/views.gyp:views_test_support',
232 '../ui/ui.gyp:ui_resources',
233 ],
234 'sources/': [
235 ['exclude', 'shell/browser/shell_aura.cc'],
236 ],
237 }, {
238 'sources/': [
239 ['exclude', 'shell/browser/shell_views.cc'],
240 ],
241 }],
242 ],
243 }, {
244 'sources/': [
245 ['exclude', 'shell/browser/shell_aura.cc'],
246 ['exclude', 'shell/browser/shell_views.cc'],
247 ],
229 }], # use_aura==1 248 }], # use_aura==1
230 ['chromeos==1', { 249 ['chromeos==1', {
231 'dependencies': [ 250 'dependencies': [
232 '../chromeos/chromeos.gyp:chromeos', 251 '../chromeos/chromeos.gyp:chromeos',
233 '../ui/shell/shell.gyp:shell', 252 '../ui/shell/shell.gyp:shell',
234 ], 253 ],
235 }], # chromeos==1 254 }], # chromeos==1
236 ['use_ash==1', { 255 ['use_ash==1', {
237 'dependencies': [ 256 'dependencies': [
238 '../ash/ash.gyp:ash', 257 '../ash/ash.gyp:ash',
(...skipping 539 matching lines...) Expand 10 before | Expand all | Expand 10 after
778 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', 797 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb',
779 '--destination_dir', '<(dest_dir)', 798 '--destination_dir', '<(dest_dir)',
780 ], 799 ],
781 }, 800 },
782 ], 801 ],
783 }, 802 },
784 ], 803 ],
785 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" 804 }], # OS=="win" and fastbuild==0 and target_arch=="ia32"
786 ] 805 ]
787 } 806 }
OLDNEW
« no previous file with comments | « build/build_config.h ('k') | content/shell/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698