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

Side by Side Diff: content/content.gyp

Issue 12191002: Enable BIGOBJ in MSVC for content target (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
11 'webkit_src_dir': '../../../..', 11 'webkit_src_dir': '../../../..',
12 },{ 12 },{
13 'webkit_src_dir': '../third_party/WebKit', 13 'webkit_src_dir': '../third_party/WebKit',
14 }], 14 }],
15 ], 15 ],
16 }, 16 },
17 'target_defaults': { 17 'target_defaults': {
18 'defines': ['CONTENT_IMPLEMENTATION'], 18 'defines': ['CONTENT_IMPLEMENTATION'],
19 'conditions': [ 19 'conditions': [
20 ['inside_chromium_build==0', { 20 ['inside_chromium_build==0', {
21 'dependencies': [ 21 'dependencies': [
22 '../webkit/support/setup_third_party.gyp:third_party_headers', 22 '../webkit/support/setup_third_party.gyp:third_party_headers',
23 ], 23 ],
24 }], 24 }],
25 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed.
26 ['OS=="win" and target_arch=="x64"', {
27 'msvs_settings': {
28 'VCCLCompilerTool': {
29 'AdditionalOptions': ['/bigobj'],
30 },
31 },
32 }],
33
25 ], 34 ],
26 }, 35 },
27 'conditions': [ 36 'conditions': [
28 ['inside_chromium_build==1', { 37 ['inside_chromium_build==1', {
29 'includes': [ 38 'includes': [
30 'content_tests.gypi', 39 'content_tests.gypi',
31 ], 40 ],
32 }], 41 }],
33 ['OS != "ios"', { 42 ['OS != "ios"', {
34 'includes': [ 43 'includes': [
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after
370 'include_dirs': [ 379 'include_dirs': [
371 '<(SHARED_INTERMEDIATE_DIR)/content', 380 '<(SHARED_INTERMEDIATE_DIR)/content',
372 ], 381 ],
373 }, 382 },
374 'includes': [ 'content_jni.gypi' ], 383 'includes': [ 'content_jni.gypi' ],
375 }, 384 },
376 ], 385 ],
377 }], # OS == "android" 386 }], # OS == "android"
378 ], 387 ],
379 } 388 }
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