| 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 132 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 143             'content_common', | 143             'content_common', | 
| 144           ], | 144           ], | 
| 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 | 
|  | 154             # crbug.com/422251 | 
|  | 155             '../build/android/disable_lto.gypi', | 
| 153           ], | 156           ], | 
| 154           'dependencies': [ | 157           'dependencies': [ | 
| 155             'content_common', | 158             'content_common', | 
| 156           ], | 159           ], | 
| 157           'export_dependent_settings': [ | 160           'export_dependent_settings': [ | 
| 158             'content_common', | 161             'content_common', | 
| 159           ], | 162           ], | 
| 160           'conditions': [ | 163           'conditions': [ | 
| 161             ['java_bridge==1', { | 164             ['java_bridge==1', { | 
| 162               'dependencies': [ | 165               'dependencies': [ | 
| (...skipping 406 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 569                   ], | 572                   ], | 
| 570                 }, | 573                 }, | 
| 571               ], | 574               ], | 
| 572             }], | 575             }], | 
| 573           ], | 576           ], | 
| 574         }, | 577         }, | 
| 575       ], | 578       ], | 
| 576     }],  # OS == "android" | 579     }],  # OS == "android" | 
| 577   ], | 580   ], | 
| 578 } | 581 } | 
| OLD | NEW | 
|---|