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

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

Issue 206006: Force inclusion of build/common.gypi for all chromium gyp files. (Closed)
Patch Set: 2nd round of feedback Created 11 years, 3 months 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
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 '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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698