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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 'shell/renderer/webkit_test_runner.cc', | 246 'shell/renderer/webkit_test_runner.cc', |
247 'shell/renderer/webkit_test_runner.h', | 247 'shell/renderer/webkit_test_runner.h', |
248 'test/layouttest_support.cc', | 248 'test/layouttest_support.cc', |
249 ], | 249 ], |
250 'msvs_settings': { | 250 'msvs_settings': { |
251 'VCLinkerTool': { | 251 'VCLinkerTool': { |
252 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS | 252 'SubSystem': '2', # Set /SUBSYSTEM:WINDOWS |
253 }, | 253 }, |
254 }, | 254 }, |
255 'conditions': [ | 255 'conditions': [ |
| 256 ['OS=="mac"', { |
| 257 'sources/': [ |
| 258 ['exclude', 'WebTestThemeEngineMock.cpp'], |
| 259 ], |
| 260 }], |
256 ['OS=="win" and win_use_allocator_shim==1', { | 261 ['OS=="win" and win_use_allocator_shim==1', { |
257 'dependencies': [ | 262 'dependencies': [ |
258 '../base/allocator/allocator.gyp:allocator', | 263 '../base/allocator/allocator.gyp:allocator', |
259 ], | 264 ], |
260 }], | 265 }], |
261 ['OS=="win"', { | 266 ['OS=="win"', { |
262 'resource_include_dirs': [ | 267 'resource_include_dirs': [ |
263 '<(SHARED_INTERMEDIATE_DIR)/webkit', | 268 '<(SHARED_INTERMEDIATE_DIR)/webkit', |
264 ], | 269 ], |
265 'dependencies': [ | 270 'dependencies': [ |
(...skipping 852 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1118 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', | 1123 '--input_symbol', '<(PRODUCT_DIR)/content_shell.exe.pdb', |
1119 '--destination_dir', '<(dest_dir)', | 1124 '--destination_dir', '<(dest_dir)', |
1120 ], | 1125 ], |
1121 }, | 1126 }, |
1122 ], | 1127 ], |
1123 }, | 1128 }, |
1124 ], | 1129 ], |
1125 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" | 1130 }], # OS=="win" and fastbuild==0 and target_arch=="ia32" |
1126 ] | 1131 ] |
1127 } | 1132 } |
OLD | NEW |