| 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 'includes': [ | 6 'includes': [ |
| 7 '../../build/common.gypi', | 7 '../../build/common.gypi', |
| 8 ], | 8 ], |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| 11 'target_name': 'sqlite', | 11 'target_name': 'sqlite', |
| 12 'product_name': 'sqlite3', | 12 'product_name': 'sqlite3', |
| 13 'type': 'static_library', | 13 'type': 'static_library', |
| 14 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9', |
| 14 'sources': [ | 15 'sources': [ |
| 15 # This list contains all .h, .c, and .cc files in the directories | 16 # This list contains all .h, .c, and .cc files in the directories |
| 16 # ext, preprocessed, and src, with the exception of src/shell* and | 17 # ext, preprocessed, and src, with the exception of src/shell* and |
| 17 # src/test*. Exclusions are applied below in the sources/ and | 18 # src/test*. Exclusions are applied below in the sources/ and |
| 18 # sources! sections. | 19 # sources! sections. |
| 19 'ext/fts1/ft_hash.c', | 20 'ext/fts1/ft_hash.c', |
| 20 'ext/fts1/ft_hash.h', | 21 'ext/fts1/ft_hash.h', |
| 21 'ext/fts1/fts1.c', | 22 'ext/fts1/fts1.c', |
| 22 'ext/fts1/fts1.h', | 23 'ext/fts1/fts1.h', |
| 23 'ext/fts1/fts1_hash.c', | 24 'ext/fts1/fts1_hash.c', |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 165 'conditions': [ | 166 'conditions': [ |
| 166 ['OS=="win"', { | 167 ['OS=="win"', { |
| 167 'sources/': [['exclude', '_unix\\.cc?$']], | 168 'sources/': [['exclude', '_unix\\.cc?$']], |
| 168 }, { # else: OS!="win" | 169 }, { # else: OS!="win" |
| 169 'sources/': [['exclude', '_(w32|win)\\.cc?$']], | 170 'sources/': [['exclude', '_(w32|win)\\.cc?$']], |
| 170 }], | 171 }], |
| 171 ], | 172 ], |
| 172 }, | 173 }, |
| 173 ], | 174 ], |
| 174 } | 175 } |
| OLD | NEW |