| 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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 206 'includes': [ | 206 'includes': [ |
| 207 'content_browser.gypi', | 207 'content_browser.gypi', |
| 208 # Disable LTO due to ELF section name out of range | 208 # Disable LTO due to ELF section name out of range |
| 209 # crbug.com/422251 | 209 # crbug.com/422251 |
| 210 '../build/android/disable_gcc_lto.gypi', | 210 '../build/android/disable_gcc_lto.gypi', |
| 211 ], | 211 ], |
| 212 'dependencies': [ | 212 'dependencies': [ |
| 213 'chrome_manifest', | 213 'chrome_manifest', |
| 214 'chrome_renderer_manifest', | 214 'chrome_renderer_manifest', |
| 215 'content_common', | 215 'content_common', |
| 216 'content_gpu', |
| 216 'content_resources', | 217 'content_resources', |
| 217 ], | 218 ], |
| 218 'export_dependent_settings': [ | 219 'export_dependent_settings': [ |
| 219 'content_common', | 220 'content_common', |
| 220 ], | 221 ], |
| 221 'conditions': [ | 222 'conditions': [ |
| 222 ['java_bridge==1', { | 223 ['java_bridge==1', { |
| 223 'dependencies': [ | 224 'dependencies': [ |
| 224 'content_child', | 225 'content_child', |
| 225 ] | 226 ] |
| 226 }], | 227 }], |
| 227 ['OS=="android"', { | 228 ['OS=="android"', { |
| 228 'dependencies': [ | 229 'dependencies': [ |
| 229 'content_gpu', | |
| 230 'content_utility', | 230 'content_utility', |
| 231 ], | 231 ], |
| 232 }], | 232 }], |
| 233 ], | 233 ], |
| 234 }, | 234 }, |
| 235 { | 235 { |
| 236 # GN version: //content/common and //content/public/common | 236 # GN version: //content/common and //content/public/common |
| 237 'target_name': 'content_common', | 237 'target_name': 'content_common', |
| 238 'type': 'static_library', | 238 'type': 'static_library', |
| 239 'variables': { 'enable_wexit_time_destructors': 1, }, | 239 'variables': { 'enable_wexit_time_destructors': 1, }, |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 'type': 'static_library', | 303 'type': 'static_library', |
| 304 'variables': { 'enable_wexit_time_destructors': 1, }, | 304 'variables': { 'enable_wexit_time_destructors': 1, }, |
| 305 'includes': [ | 305 'includes': [ |
| 306 'content_renderer.gypi', | 306 'content_renderer.gypi', |
| 307 ], | 307 ], |
| 308 'dependencies': [ | 308 'dependencies': [ |
| 309 '../third_party/webrtc/modules/modules.gyp:webrtc_h264', | 309 '../third_party/webrtc/modules/modules.gyp:webrtc_h264', |
| 310 'common_features', | 310 'common_features', |
| 311 'content_child', | 311 'content_child', |
| 312 'content_common', | 312 'content_common', |
| 313 'content_gpu', |
| 313 'content_resources', | 314 'content_resources', |
| 314 ], | 315 ], |
| 315 'export_dependent_settings': [ | 316 'export_dependent_settings': [ |
| 316 'content_common', | 317 'content_common', |
| 317 ], | 318 ], |
| 318 'conditions': [ | 319 'conditions': [ |
| 319 ['chromium_enable_vtune_jit_for_v8==1', { | 320 ['chromium_enable_vtune_jit_for_v8==1', { |
| 320 'dependencies': [ | 321 'dependencies': [ |
| 321 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', | 322 '../v8/src/third_party/vtune/v8vtune.gyp:v8_vtune', |
| 322 ], | 323 ], |
| (...skipping 379 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 }, | 703 }, |
| 703 'includes': [ | 704 'includes': [ |
| 704 '../build/android/copy_ex.gypi', | 705 '../build/android/copy_ex.gypi', |
| 705 '../build/android/v8_external_startup_data_arch_suffix.gypi', | 706 '../build/android/v8_external_startup_data_arch_suffix.gypi', |
| 706 ], | 707 ], |
| 707 }, | 708 }, |
| 708 ], | 709 ], |
| 709 }], # OS == "android" | 710 }], # OS == "android" |
| 710 ], | 711 ], |
| 711 } | 712 } |
| OLD | NEW |