| 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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 }, | 145 }, |
| 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 # Disable LTO due to ELF section name out of range | 153 # Disable LTO due to ELF section name out of range |
| 154 # crbug.com/422251 | 154 # crbug.com/422251 |
| 155 '../build/android/disable_lto.gypi', | 155 '../build/android/disable_gcc_lto.gypi', |
| 156 ], | 156 ], |
| 157 'dependencies': [ | 157 'dependencies': [ |
| 158 'content_common', | 158 'content_common', |
| 159 ], | 159 ], |
| 160 'export_dependent_settings': [ | 160 'export_dependent_settings': [ |
| 161 'content_common', | 161 'content_common', |
| 162 ], | 162 ], |
| 163 'conditions': [ | 163 'conditions': [ |
| 164 ['java_bridge==1', { | 164 ['java_bridge==1', { |
| 165 'dependencies': [ | 165 'dependencies': [ |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 641 ], | 641 ], |
| 642 }, | 642 }, |
| 643 ], | 643 ], |
| 644 }], | 644 }], |
| 645 ], | 645 ], |
| 646 }, | 646 }, |
| 647 ], | 647 ], |
| 648 }], # OS == "android" | 648 }], # OS == "android" |
| 649 ], | 649 ], |
| 650 } | 650 } |
| OLD | NEW |