Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(446)

Side by Side Diff: content/content_shell.gypi

Issue 155443002: Do not build the Mock WebThemeEngine implementation on the Mac. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698