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

Side by Side Diff: third_party/sqlite/sqlite.gyp

Issue 1289623006: build: On Android, disable LTO for specific targets only when targeting GCC. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 4 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
« build/android/disable_lto.gypi ('K') | « third_party/opus/opus.gyp ('k') | no next file » | 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 'use_system_sqlite%': 0, 7 'use_system_sqlite%': 0,
8 'required_sqlite_version': '3.6.1', 8 'required_sqlite_version': '3.6.1',
9 }, 9 },
10 'target_defaults': { 10 'target_defaults': {
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 '-Wno-int-to-pointer-cast', 165 '-Wno-int-to-pointer-cast',
166 '-Wno-pointer-to-int-cast', 166 '-Wno-pointer-to-int-cast',
167 ], 167 ],
168 }], 168 }],
169 ], 169 ],
170 }], 170 }],
171 ], 171 ],
172 'includes': [ 172 'includes': [
173 # Disable LTO due to ELF section name out of range 173 # Disable LTO due to ELF section name out of range
174 # crbug.com/422251 174 # crbug.com/422251
175 '../../build/android/disable_lto.gypi', 175 '../../build/android/disable_gcc_lto.gypi',
176 ], 176 ],
177 }, 177 },
178 ], 178 ],
179 'conditions': [ 179 'conditions': [
180 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', { 180 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', {
181 'targets': [ 181 'targets': [
182 { 182 {
183 'target_name': 'sqlite_shell', 183 'target_name': 'sqlite_shell',
184 'type': 'executable', 184 'type': 'executable',
185 'dependencies': [ 185 'dependencies': [
(...skipping 23 matching lines...) Expand all
209 'SQLITE_CORE', 209 'SQLITE_CORE',
210 ], 210 ],
211 'sources': [ 211 'sources': [
212 'src/ext/icu/icu.c', 212 'src/ext/icu/icu.c',
213 ], 213 ],
214 }, 214 },
215 ], 215 ],
216 }], 216 }],
217 ], 217 ],
218 } 218 }
OLDNEW
« build/android/disable_lto.gypi ('K') | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698