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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 '../components/components.gyp:breakpad_host', | 290 '../components/components.gyp:breakpad_host', |
291 ], | 291 ], |
292 }], | 292 }], |
293 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { | 293 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { |
294 'dependencies': [ | 294 'dependencies': [ |
295 # This is needed by content/app/content_main_runner.cc | 295 # This is needed by content/app/content_main_runner.cc |
296 '../base/allocator/allocator.gyp:allocator', | 296 '../base/allocator/allocator.gyp:allocator', |
297 ], | 297 ], |
298 }], | 298 }], |
299 ['use_aura==1', { | 299 ['use_aura==1', { |
| 300 'sources/': [ |
| 301 ['exclude', 'shell/browser/shell_android.cc'], |
| 302 ], |
300 'dependencies': [ | 303 'dependencies': [ |
301 '../ui/aura/aura.gyp:aura', | 304 '../ui/aura/aura.gyp:aura', |
302 '../ui/aura/aura.gyp:aura_test_support', | 305 '../ui/aura/aura.gyp:aura_test_support', |
303 '../ui/events/events.gyp:events', | 306 '../ui/events/events.gyp:events', |
304 '../ui/strings/ui_strings.gyp:ui_strings', | 307 '../ui/strings/ui_strings.gyp:ui_strings', |
305 '../ui/wm/wm.gyp:wm', | 308 '../ui/wm/wm.gyp:wm', |
306 ], | 309 ], |
307 'conditions': [ | 310 'conditions': [ |
308 ['toolkit_views==1', { | 311 ['toolkit_views==1', { |
309 'dependencies': [ | 312 'dependencies': [ |
(...skipping 696 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1006 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1009 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1007 '--destination_dir', '<(dest_dir)', | 1010 '--destination_dir', '<(dest_dir)', |
1008 ], | 1011 ], |
1009 }, | 1012 }, |
1010 ], | 1013 ], |
1011 }, | 1014 }, |
1012 ], | 1015 ], |
1013 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1016 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1014 ] | 1017 ] |
1015 } | 1018 } |
OLD | NEW |