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