| 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 'target_defaults': { | 10 'target_defaults': { |
| 11 'defines': [ | 11 'defines': [ |
| 12 'SQLITE_ENABLE_BROKEN_FTS2', |
| 12 'SQLITE_ENABLE_FTS2', | 13 'SQLITE_ENABLE_FTS2', |
| 13 'SQLITE_ENABLE_BROKEN_FTS2', | |
| 14 'SQLITE_ENABLE_ICU', | 14 'SQLITE_ENABLE_ICU', |
| 15 'SQLITE_ENABLE_MEMORY_MANAGEMENT', |
| 15 'SQLITE_SECURE_DELETE', | 16 'SQLITE_SECURE_DELETE', |
| 16 'THREADSAFE', | 17 'THREADSAFE', |
| 17 '_HAS_EXCEPTIONS=0', | 18 '_HAS_EXCEPTIONS=0', |
| 18 ], | 19 ], |
| 19 }, | 20 }, |
| 20 'targets': [ | 21 'targets': [ |
| 21 { | 22 { |
| 22 'target_name': 'sqlite', | 23 'target_name': 'sqlite', |
| 23 'conditions': [ | 24 'conditions': [ |
| 24 ['OS=="linux" and not use_system_sqlite', { | 25 ['OS=="linux" and not use_system_sqlite', { |
| (...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 245 ], | 246 ], |
| 246 },] | 247 },] |
| 247 ], | 248 ], |
| 248 } | 249 } |
| 249 | 250 |
| 250 # Local Variables: | 251 # Local Variables: |
| 251 # tab-width:2 | 252 # tab-width:2 |
| 252 # indent-tabs-mode:nil | 253 # indent-tabs-mode:nil |
| 253 # End: | 254 # End: |
| 254 # vim: set expandtab tabstop=2 shiftwidth=2: | 255 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |