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 }, |
(...skipping 13 matching lines...) Expand all Loading... |
24 'conditions': [ | 24 'conditions': [ |
25 ['OS != "ios"', { | 25 ['OS != "ios"', { |
26 'includes': [ | 26 'includes': [ |
27 '../build/win_precompile.gypi', | 27 '../build/win_precompile.gypi', |
28 'content_resources.gypi', | 28 'content_resources.gypi', |
29 ], | 29 ], |
30 }], | 30 }], |
31 ['OS == "win"', { | 31 ['OS == "win"', { |
32 'targets': [ | 32 'targets': [ |
33 { | 33 { |
| 34 # GN: //content:content_startup_helper_win |
34 'target_name': 'content_startup_helper_win', | 35 'target_name': 'content_startup_helper_win', |
35 'type': 'static_library', | 36 'type': 'static_library', |
36 'include_dirs': [ | 37 'include_dirs': [ |
37 '..', | 38 '..', |
38 ], | 39 ], |
39 'dependencies': [ | 40 'dependencies': [ |
40 '../base/base.gyp:base', | 41 '../base/base.gyp:base', |
41 '../base/base.gyp:base_i18n', | 42 '../base/base.gyp:base_i18n', |
42 '../sandbox/sandbox.gyp:sandbox', | 43 '../sandbox/sandbox.gyp:sandbox', |
43 ], | 44 ], |
(...skipping 565 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
609 ], | 610 ], |
610 }, | 611 }, |
611 ], | 612 ], |
612 }], | 613 }], |
613 ], | 614 ], |
614 }, | 615 }, |
615 ], | 616 ], |
616 }], # OS == "android" | 617 }], # OS == "android" |
617 ], | 618 ], |
618 } | 619 } |
OLD | NEW |