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

Side by Side Diff: third_party/sqlite/sqlite.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 | « 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 'src/ext/fts2/fts2_tokenizer.h', 170 'src/ext/fts2/fts2_tokenizer.h',
171 'src/ext/fts2/fts2_tokenizer1.c', 171 'src/ext/fts2/fts2_tokenizer1.c',
172 ], 172 ],
173 'include_dirs': [ 173 'include_dirs': [
174 'src/src', 174 'src/src',
175 ], 175 ],
176 }], 176 }],
177 ], 177 ],
178 }], 178 }],
179 ], 179 ],
180 'includes': [
181 # Disable LTO due to ELF section name out of range
182 # crbug.com/422251
183 '../../build/android/disable_lto.gypi',
184 ],
180 }, 185 },
181 ], 186 ],
182 'conditions': [ 187 'conditions': [
183 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', { 188 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android" and not use_system_sqlite', {
184 'targets': [ 189 'targets': [
185 { 190 {
186 'target_name': 'sqlite_shell', 191 'target_name': 'sqlite_shell',
187 'type': 'executable', 192 'type': 'executable',
188 'dependencies': [ 193 'dependencies': [
189 '../icu/icu.gyp:icuuc', 194 '../icu/icu.gyp:icuuc',
(...skipping 18 matching lines...) Expand all
208 '../icu/icu.gyp:icuuc', 213 '../icu/icu.gyp:icuuc',
209 ], 214 ],
210 'sources': [ 215 'sources': [
211 'src/ext/icu/icu.c', 216 'src/ext/icu/icu.c',
212 ], 217 ],
213 }, 218 },
214 ], 219 ],
215 }], 220 }],
216 ], 221 ],
217 } 222 }
OLDNEW
« no previous file with comments | « third_party/opus/opus.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698