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 28 matching lines...) Expand all Loading... |
39 # chrome_exe to have to depend on allocator). | 39 # chrome_exe to have to depend on allocator). |
40 ['component=="static_library"', { | 40 ['component=="static_library"', { |
41 'target_defines': [ | 41 'target_defines': [ |
42 'COMPILE_CONTENT_STATICALLY', | 42 'COMPILE_CONTENT_STATICALLY', |
43 ], | 43 ], |
44 'targets': [ | 44 'targets': [ |
45 { | 45 { |
46 'target_name': 'content', | 46 'target_name': 'content', |
47 'type': 'none', | 47 'type': 'none', |
48 'dependencies': [ | 48 'dependencies': [ |
49 'content_app_browser', | |
50 'content_browser', | 49 'content_browser', |
51 'content_child', | 50 'content_child', |
52 'content_common', | 51 'content_common', |
53 ], | 52 ], |
54 'conditions': [ | 53 'conditions': [ |
55 ['OS != "ios"', { | 54 ['OS != "ios"', { |
56 'dependencies': [ | 55 'dependencies': [ |
57 'content_gpu', | 56 'content_gpu', |
58 'content_plugin', | 57 'content_plugin', |
59 'content_ppapi_plugin', | 58 'content_ppapi_plugin', |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 'include_dirs': [ | 496 'include_dirs': [ |
498 '<(SHARED_INTERMEDIATE_DIR)/content', | 497 '<(SHARED_INTERMEDIATE_DIR)/content', |
499 ], | 498 ], |
500 }, | 499 }, |
501 'includes': [ 'content_jni.gypi' ], | 500 'includes': [ 'content_jni.gypi' ], |
502 }, | 501 }, |
503 ], | 502 ], |
504 }], # OS == "android" | 503 }], # OS == "android" |
505 ], | 504 ], |
506 } | 505 } |
OLD | NEW |