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': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
10 }, | 10 }, |
(...skipping 10 matching lines...) Expand all Loading... |
21 }], | 21 }], |
22 ], | 22 ], |
23 }, | 23 }, |
24 'includes': [ | 24 'includes': [ |
25 'content_tests.gypi', | 25 'content_tests.gypi', |
26 ], | 26 ], |
27 'conditions': [ | 27 'conditions': [ |
28 ['OS != "ios"', { | 28 ['OS != "ios"', { |
29 'includes': [ | 29 'includes': [ |
30 '../build/win_precompile.gypi', | 30 '../build/win_precompile.gypi', |
31 'content_shell.gypi', | |
32 ], | 31 ], |
33 }], | 32 }], |
34 # In component mode, we build all of content as a single DLL. | 33 # In component mode, we build all of content as a single DLL. |
35 # However, in the static mode, we need to build content as multiple | 34 # However, in the static mode, we need to build content as multiple |
36 # targets in order to prevent dependencies from getting introduced | 35 # targets in order to prevent dependencies from getting introduced |
37 # upstream unnecessarily (e.g., content_renderer depends on allocator | 36 # upstream unnecessarily (e.g., content_renderer depends on allocator |
38 # and chrome_exe depends on content_common but we don't want | 37 # and chrome_exe depends on content_common but we don't want |
39 # chrome_exe to have to depend on allocator). | 38 # chrome_exe to have to depend on allocator). |
40 ['component=="static_library"', { | 39 ['component=="static_library"', { |
41 'target_defines': [ | 40 'target_defines': [ |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
454 'include_dirs': [ | 453 'include_dirs': [ |
455 '<(SHARED_INTERMEDIATE_DIR)/content', | 454 '<(SHARED_INTERMEDIATE_DIR)/content', |
456 ], | 455 ], |
457 }, | 456 }, |
458 'includes': [ 'content_jni.gypi' ], | 457 'includes': [ 'content_jni.gypi' ], |
459 }, | 458 }, |
460 ], | 459 ], |
461 }], # OS == "android" | 460 }], # OS == "android" |
462 ], | 461 ], |
463 } | 462 } |
OLD | NEW |