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 }, | 8 }, |
9 'includes': [ | 9 'includes': [ |
10 '../../build/common.gypi', | 10 '../../build/common.gypi', |
(...skipping 19 matching lines...) Expand all Loading... |
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 Loading... |
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 } |
OLD | NEW |