| 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 'content_shell_version': '99.77.34.5', | 8 'content_shell_version': '99.77.34.5', |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['OS=="linux"', { | 10 ['OS=="linux"', { |
| (...skipping 263 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 274 'dependencies': [ | 274 'dependencies': [ |
| 275 '../mojo/mojo_base.gyp:libmojo_system_java', | 275 '../mojo/mojo_base.gyp:libmojo_system_java', |
| 276 'content_shell_jni_headers', | 276 'content_shell_jni_headers', |
| 277 ], | 277 ], |
| 278 }], # OS=="android" | 278 }], # OS=="android" |
| 279 ['os_posix == 1 and OS != "mac"', { | 279 ['os_posix == 1 and OS != "mac"', { |
| 280 'dependencies': [ | 280 'dependencies': [ |
| 281 '../components/components.gyp:breakpad_host', | 281 '../components/components.gyp:breakpad_host', |
| 282 ], | 282 ], |
| 283 }], | 283 }], |
| 284 ['debug_devtools==1', { |
| 285 'defines': [ |
| 286 'DEBUG_DEVTOOLS=1', |
| 287 ], |
| 288 }], |
| 284 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { | 289 ['(OS=="linux" or OS=="android") and use_allocator!="none"', { |
| 285 'dependencies': [ | 290 'dependencies': [ |
| 286 # This is needed by content/app/content_main_runner.cc | 291 # This is needed by content/app/content_main_runner.cc |
| 287 '../base/allocator/allocator.gyp:allocator', | 292 '../base/allocator/allocator.gyp:allocator', |
| 288 ], | 293 ], |
| 289 }], | 294 }], |
| 290 ['use_aura==1', { | 295 ['use_aura==1', { |
| 291 'dependencies': [ | 296 'dependencies': [ |
| 292 '../ui/aura/aura.gyp:aura', | 297 '../ui/aura/aura.gyp:aura', |
| 293 '../ui/aura/aura.gyp:aura_test_support', | 298 '../ui/aura/aura.gyp:aura_test_support', |
| (...skipping 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 988 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 993 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 989 '--destination_dir', '<(dest_dir)', | 994 '--destination_dir', '<(dest_dir)', |
| 990 ], | 995 ], |
| 991 }, | 996 }, |
| 992 ], | 997 ], |
| 993 }, | 998 }, |
| 994 ], | 999 ], |
| 995 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1000 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 996 ] | 1001 ] |
| 997 } | 1002 } |
| OLD | NEW |