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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
291 '../components/components.gyp:breakpad_host', | 291 '../components/components.gyp:breakpad_host', |
292 ], | 292 ], |
293 }], | 293 }], |
294 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { | 294 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { |
295 'dependencies': [ | 295 'dependencies': [ |
296 # This is needed by content/app/content_main_runner.cc | 296 # This is needed by content/app/content_main_runner.cc |
297 '../base/allocator/allocator.gyp:allocator', | 297 '../base/allocator/allocator.gyp:allocator', |
298 ], | 298 ], |
299 }], | 299 }], |
300 ['use_aura==1', { | 300 ['use_aura==1', { |
| 301 'sources/': [ |
| 302 ['exclude', 'shell/browser/shell_android.cc'], |
| 303 ], |
301 'dependencies': [ | 304 'dependencies': [ |
302 '../ui/aura/aura.gyp:aura', | 305 '../ui/aura/aura.gyp:aura', |
303 '../ui/aura/aura.gyp:aura_test_support', | 306 '../ui/aura/aura.gyp:aura_test_support', |
304 '../ui/events/events.gyp:events', | 307 '../ui/events/events.gyp:events', |
305 '../ui/strings/ui_strings.gyp:ui_strings', | 308 '../ui/strings/ui_strings.gyp:ui_strings', |
306 '../ui/wm/wm.gyp:wm', | 309 '../ui/wm/wm.gyp:wm', |
307 ], | 310 ], |
308 'conditions': [ | 311 'conditions': [ |
309 ['toolkit_views==1', { | 312 ['toolkit_views==1', { |
310 'dependencies': [ | 313 'dependencies': [ |
(...skipping 752 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1063 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1066 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1064 '--destination_dir', '<(dest_dir)', | 1067 '--destination_dir', '<(dest_dir)', |
1065 ], | 1068 ], |
1066 }, | 1069 }, |
1067 ], | 1070 ], |
1068 }, | 1071 }, |
1069 ], | 1072 ], |
1070 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1073 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1071 ] | 1074 ] |
1072 } | 1075 } |
OLD | NEW |