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 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, | 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)'
, |
10 }, | 10 }, |
11 'target_defaults': { | 11 'target_defaults': { |
12 'defines': ['CONTENT_IMPLEMENTATION'], | 12 'defines': ['CONTENT_IMPLEMENTATION'], |
| 13 'conditions': [ |
| 14 # TODO(jschuh): Remove this after crbug.com/173851 gets fixed. |
| 15 ['OS=="win" and target_arch=="x64"', { |
| 16 'msvs_settings': { |
| 17 'VCCLCompilerTool': { |
| 18 'AdditionalOptions': ['/bigobj'], |
| 19 }, |
| 20 }, |
| 21 }], |
| 22 ], |
13 }, | 23 }, |
14 'conditions': [ | 24 'conditions': [ |
15 ['OS != "ios"', { | 25 ['OS != "ios"', { |
16 'includes': [ | 26 'includes': [ |
17 '../build/win_precompile.gypi', | 27 '../build/win_precompile.gypi', |
18 'content_resources.gypi', | 28 'content_resources.gypi', |
19 ], | 29 ], |
20 }], | 30 }], |
21 ['OS == "win"', { | 31 ['OS == "win"', { |
22 'targets': [ | 32 'targets': [ |
(...skipping 587 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
610 ], | 620 ], |
611 }, | 621 }, |
612 ], | 622 ], |
613 }], | 623 }], |
614 ], | 624 ], |
615 }, | 625 }, |
616 ], | 626 ], |
617 }], # OS == "android" | 627 }], # OS == "android" |
618 ], | 628 ], |
619 } | 629 } |
OLD | NEW |