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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
146 { | 146 { |
147 # GN version: //content/browser and //content/public/browser | 147 # GN version: //content/browser and //content/public/browser |
148 'target_name': 'content_browser', | 148 'target_name': 'content_browser', |
149 'type': 'static_library', | 149 'type': 'static_library', |
150 'variables': { 'enable_wexit_time_destructors': 1, }, | 150 'variables': { 'enable_wexit_time_destructors': 1, }, |
151 'includes': [ | 151 'includes': [ |
152 'content_browser.gypi', | 152 'content_browser.gypi', |
153 ], | 153 ], |
154 'dependencies': [ | 154 'dependencies': [ |
155 'content_common', | 155 'content_common', |
156 'content_renderer', | |
jam
2014/09/23 05:14:41
huh?
| |
156 ], | 157 ], |
157 'export_dependent_settings': [ | 158 'export_dependent_settings': [ |
158 'content_common', | 159 'content_common', |
159 ], | 160 ], |
160 'conditions': [ | 161 'conditions': [ |
161 ['java_bridge==1', { | 162 ['java_bridge==1', { |
162 'dependencies': [ | 163 'dependencies': [ |
163 'content_child', | 164 'content_child', |
164 ] | 165 ] |
165 }], | 166 }], |
(...skipping 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
603 'browser/gamepad/canonical_axis_index_list.h', | 604 'browser/gamepad/canonical_axis_index_list.h', |
604 'browser/gamepad/canonical_button_index_list.h', | 605 'browser/gamepad/canonical_button_index_list.h', |
605 ], | 606 ], |
606 }, | 607 }, |
607 'includes': [ '../build/android/java_cpp_template.gypi' ], | 608 'includes': [ '../build/android/java_cpp_template.gypi' ], |
608 }, | 609 }, |
609 ], | 610 ], |
610 }], # OS == "android" | 611 }], # OS == "android" |
611 ], | 612 ], |
612 } | 613 } |
OLD | NEW |