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 '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 Loading... |
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 Loading... |
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 } |
OLD | NEW |