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 154 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 } |
OLD | NEW |