| 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 297 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 # This dependency is for running DRT against the content shell, and | 308 # This dependency is for running DRT against the content shell, and |
| 309 # this combination is not yet supported on Android. | 309 # this combination is not yet supported on Android. |
| 310 'test_support_content', | 310 'test_support_content', |
| 311 ], | 311 ], |
| 312 }], # OS=="android" | 312 }], # OS=="android" |
| 313 ['os_posix == 1 and OS != "mac" and android_webview_build != 1', { | 313 ['os_posix == 1 and OS != "mac" and android_webview_build != 1', { |
| 314 'dependencies': [ | 314 'dependencies': [ |
| 315 '../components/components.gyp:breakpad_host', | 315 '../components/components.gyp:breakpad_host', |
| 316 ], | 316 ], |
| 317 }], | 317 }], |
| 318 ['(os_posix==1 and use_aura==1 and linux_use_tcmalloc==1) or (android_us
e_tcmalloc==1)', { | 318 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 |
| 319 ['(os_posix==1 and use_aura==1 and ((use_allocator!="none" and use_alloc
ator!="see_use_tcmalloc") or (use_allocator=="see_use_tcmalloc" and linux_use_tc
malloc==1)))', { |
| 319 'dependencies': [ | 320 'dependencies': [ |
| 320 # This is needed by content/app/content_main_runner.cc | 321 # This is needed by content/app/content_main_runner.cc |
| 321 '../base/allocator/allocator.gyp:allocator', | 322 '../base/allocator/allocator.gyp:allocator', |
| 322 ], | 323 ], |
| 323 }], | 324 }], |
| 324 ['use_aura==1', { | 325 ['use_aura==1', { |
| 325 'dependencies': [ | 326 'dependencies': [ |
| 326 '../ui/aura/aura.gyp:aura', | 327 '../ui/aura/aura.gyp:aura', |
| 327 '../ui/base/strings/ui_strings.gyp:ui_strings', | 328 '../ui/base/strings/ui_strings.gyp:ui_strings', |
| 328 ], | 329 ], |
| (...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1126 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1126 '--destination_dir', '<(dest_dir)', | 1127 '--destination_dir', '<(dest_dir)', |
| 1127 ], | 1128 ], |
| 1128 }, | 1129 }, |
| 1129 ], | 1130 ], |
| 1130 }, | 1131 }, |
| 1131 ], | 1132 ], |
| 1132 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1133 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1133 ] | 1134 ] |
| 1134 } | 1135 } |
| OLD | NEW |