Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(234)

Side by Side Diff: content/content.gyp

Issue 646873004: Add Link-Time Optimizations support for Android. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review comment Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | gpu/gpu.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
569 ], 572 ],
570 }, 573 },
571 ], 574 ],
572 }], 575 }],
573 ], 576 ],
574 }, 577 },
575 ], 578 ],
576 }], # OS == "android" 579 }], # OS == "android"
577 ], 580 ],
578 } 581 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser_ui.gypi ('k') | gpu/gpu.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698