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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 'type': 'static_library', | 115 'type': 'static_library', |
116 'variables': { 'enable_wexit_time_destructors': 1, }, | 116 'variables': { 'enable_wexit_time_destructors': 1, }, |
117 'includes': [ | 117 'includes': [ |
118 'content_browser.gypi', | 118 'content_browser.gypi', |
119 ], | 119 ], |
120 'dependencies': [ | 120 'dependencies': [ |
121 'content_common', | 121 'content_common', |
122 'content_resources.gyp:content_resources', | 122 'content_resources.gyp:content_resources', |
123 ], | 123 ], |
124 'conditions': [ | 124 'conditions': [ |
125 ['OS != "ios" and chrome_multiple_dll != 1', { | 125 ['java_bridge==1', { |
| 126 'dependencies': [ |
| 127 'content_child', |
| 128 ] |
| 129 }], |
| 130 ['OS=="android"', { |
126 'dependencies': [ | 131 'dependencies': [ |
127 'content_gpu', | 132 'content_gpu', |
128 'content_utility', | 133 'content_utility', |
129 ], | 134 ], |
130 }], | 135 }], |
131 ['java_bridge==1', { | |
132 'dependencies': [ | |
133 'content_child', | |
134 ] | |
135 }] | |
136 ], | 136 ], |
137 }, | 137 }, |
138 { | 138 { |
139 'target_name': 'content_common', | 139 'target_name': 'content_common', |
140 'type': 'static_library', | 140 'type': 'static_library', |
141 'variables': { 'enable_wexit_time_destructors': 1, }, | 141 'variables': { 'enable_wexit_time_destructors': 1, }, |
142 'includes': [ | 142 'includes': [ |
143 'content_common.gypi', | 143 'content_common.gypi', |
144 ], | 144 ], |
145 'conditions': [ | 145 'conditions': [ |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
491 'include_dirs': [ | 491 'include_dirs': [ |
492 '<(SHARED_INTERMEDIATE_DIR)/content', | 492 '<(SHARED_INTERMEDIATE_DIR)/content', |
493 ], | 493 ], |
494 }, | 494 }, |
495 'includes': [ 'content_jni.gypi' ], | 495 'includes': [ 'content_jni.gypi' ], |
496 }, | 496 }, |
497 ], | 497 ], |
498 }], # OS == "android" | 498 }], # OS == "android" |
499 ], | 499 ], |
500 } | 500 } |
OLD | NEW |