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

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

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « third_party/modp_b64/modp_b64.gyp ('k') | third_party/zlib/zlib.gyp » ('j') | 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 }, 8 },
9 'includes': [ 9 'includes': [
10 '../../build/common.gypi', 10 '../../build/common.gypi',
(...skipping 19 matching lines...) Expand all
30 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags sqlit e)', 30 '<!@(python ../../build/linux/pkg_config_wrapper.py --cflags sqlit e)',
31 ], 31 ],
32 }, 32 },
33 'link_settings': { 33 'link_settings': {
34 'libraries': [ 34 'libraries': [
35 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs sqlite) ', 35 '<!@(python ../../build/linux/pkg_config_wrapper.py --libs sqlite) ',
36 ], 36 ],
37 }, 37 },
38 }, { # else: OS != "linux" or ! use_system_sqlite 38 }, { # else: OS != "linux" or ! use_system_sqlite
39 'product_name': 'sqlite3', 39 'product_name': 'sqlite3',
40 'type': 'static_library', 40 'type': '<(library)',
41 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9', 41 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9',
42 'sources': [ 42 'sources': [
43 # This list contains all .h, .c, and .cc files in the directories 43 # This list contains all .h, .c, and .cc files in the directories
44 # ext, preprocessed, and src, with the exception of src/shell* and 44 # ext, preprocessed, and src, with the exception of src/shell* and
45 # src/test*. Exclusions are applied below in the sources/ and 45 # src/test*. Exclusions are applied below in the sources/ and
46 # sources! sections. 46 # sources! sections.
47 'ext/fts1/ft_hash.c', 47 'ext/fts1/ft_hash.c',
48 'ext/fts1/ft_hash.h', 48 'ext/fts1/ft_hash.h',
49 'ext/fts1/fts1.c', 49 'ext/fts1/fts1.c',
50 'ext/fts1/fts1.h', 50 'ext/fts1/fts1.h',
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 'link_languages': ['c++'], 211 'link_languages': ['c++'],
212 'libraries': [ 212 'libraries': [
213 '-ldl', 213 '-ldl',
214 ], 214 ],
215 }, 215 },
216 }, 216 },
217 ], 217 ],
218 },] 218 },]
219 ], 219 ],
220 } 220 }
OLDNEW
« no previous file with comments | « third_party/modp_b64/modp_b64.gyp ('k') | third_party/zlib/zlib.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698