| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 'shell/renderer/test_runner/web_content_settings.h', | 288 'shell/renderer/test_runner/web_content_settings.h', |
| 289 'shell/renderer/test_runner/web_frame_test_proxy.h', | 289 'shell/renderer/test_runner/web_frame_test_proxy.h', |
| 290 'shell/renderer/test_runner/web_task.cc', | 290 'shell/renderer/test_runner/web_task.cc', |
| 291 'shell/renderer/test_runner/web_task.h', | 291 'shell/renderer/test_runner/web_task.h', |
| 292 'shell/renderer/test_runner/web_test_delegate.h', | 292 'shell/renderer/test_runner/web_test_delegate.h', |
| 293 'shell/renderer/test_runner/web_test_interfaces.cc', | 293 'shell/renderer/test_runner/web_test_interfaces.cc', |
| 294 'shell/renderer/test_runner/web_test_interfaces.h', | 294 'shell/renderer/test_runner/web_test_interfaces.h', |
| 295 'shell/renderer/test_runner/web_test_proxy.cc', | 295 'shell/renderer/test_runner/web_test_proxy.cc', |
| 296 'shell/renderer/test_runner/web_test_proxy.h', | 296 'shell/renderer/test_runner/web_test_proxy.h', |
| 297 'shell/renderer/test_runner/web_test_runner.h', | 297 'shell/renderer/test_runner/web_test_runner.h', |
| 298 'shell/utility/shell_content_utility_client.cc', |
| 299 'shell/utility/shell_content_utility_client.h', |
| 298 ], | 300 ], |
| 299 'msvs_settings': { | 301 'msvs_settings': { |
| 300 'VCLinkerTool': { | 302 'VCLinkerTool': { |
| 301 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 303 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
| 302 }, | 304 }, |
| 303 }, | 305 }, |
| 304 'conditions': [ | 306 'conditions': [ |
| 305 ['OS=="win" and win_use_allocator_shim==1', { | 307 ['OS=="win" and win_use_allocator_shim==1', { |
| 306 'dependencies': [ | 308 'dependencies': [ |
| 307 '../base/allocator/allocator.gyp:allocator', | 309 '../base/allocator/allocator.gyp:allocator', |
| (...skipping 870 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1178 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1180 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
| 1179 '--destination_dir', '<(dest_dir)', | 1181 '--destination_dir', '<(dest_dir)', |
| 1180 ], | 1182 ], |
| 1181 }, | 1183 }, |
| 1182 ], | 1184 ], |
| 1183 }, | 1185 }, |
| 1184 ], | 1186 ], |
| 1185 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1187 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
| 1186 ] | 1188 ] |
| 1187 } | 1189 } |
| OLD | NEW |