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

Side by Side Diff: third_party/sqlite/sqlite.gyp

Issue 333034: Enable sqlite3_release_memory(). (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | 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) 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
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:
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698