| OLD | NEW |
| 1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'includes': [ | |
| 11 '../../build/common.gypi', | |
| 12 ], | |
| 13 'target_defaults': { | 10 'target_defaults': { |
| 14 'defines': [ | 11 'defines': [ |
| 15 'SQLITE_ENABLE_FTS2', | 12 'SQLITE_ENABLE_FTS2', |
| 16 'SQLITE_ENABLE_BROKEN_FTS2', | 13 'SQLITE_ENABLE_BROKEN_FTS2', |
| 17 'SQLITE_ENABLE_ICU', | 14 'SQLITE_ENABLE_ICU', |
| 18 'SQLITE_SECURE_DELETE', | 15 'SQLITE_SECURE_DELETE', |
| 19 'THREADSAFE', | 16 'THREADSAFE', |
| 20 '_HAS_EXCEPTIONS=0', | 17 '_HAS_EXCEPTIONS=0', |
| 21 ], | 18 ], |
| 22 }, | 19 }, |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 'link_languages': ['c++'], | 223 'link_languages': ['c++'], |
| 227 'libraries': [ | 224 'libraries': [ |
| 228 '-ldl', | 225 '-ldl', |
| 229 ], | 226 ], |
| 230 }, | 227 }, |
| 231 }, | 228 }, |
| 232 ], | 229 ], |
| 233 },] | 230 },] |
| 234 ], | 231 ], |
| 235 } | 232 } |
| OLD | NEW |