| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': { |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 60 'ldflags': [ | 60 'ldflags': [ |
| 61 '<!@(pkg-config --libs-only-L --libs-only-other sqlite3)', | 61 '<!@(pkg-config --libs-only-L --libs-only-other sqlite3)', |
| 62 ], | 62 ], |
| 63 'libraries': [ | 63 'libraries': [ |
| 64 '<!@(pkg-config --libs-only-l sqlite3)', | 64 '<!@(pkg-config --libs-only-l sqlite3)', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 }, { # else: os_posix == 1 or OS == "mac" or ! use_system_sqlite | 67 }, { # else: os_posix == 1 or OS == "mac" or ! use_system_sqlite |
| 68 'product_name': 'sqlite3', | 68 'product_name': 'sqlite3', |
| 69 'type': 'static_library', | 69 'type': 'static_library', |
| 70 'msvs_guid': '6EAD4A4B-2BBC-4974-8E45-BB5C16CC2AC9', | |
| 71 'sources': [ | 70 'sources': [ |
| 72 'amalgamation/sqlite3.h', | 71 'amalgamation/sqlite3.h', |
| 73 'amalgamation/sqlite3.c', | 72 'amalgamation/sqlite3.c', |
| 74 # fts2.c currently has a lot of conflicts when added to | 73 # fts2.c currently has a lot of conflicts when added to |
| 75 # the amalgamation. It is probably not worth fixing that. | 74 # the amalgamation. It is probably not worth fixing that. |
| 76 'src/ext/fts2/fts2.c', | 75 'src/ext/fts2/fts2.c', |
| 77 'src/ext/fts2/fts2.h', | 76 'src/ext/fts2/fts2.h', |
| 78 'src/ext/fts2/fts2_hash.c', | 77 'src/ext/fts2/fts2_hash.c', |
| 79 'src/ext/fts2/fts2_hash.h', | 78 'src/ext/fts2/fts2_hash.h', |
| 80 'src/ext/fts2/fts2_icu.c', | 79 'src/ext/fts2/fts2_icu.c', |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 ], | 144 ], |
| 146 },] | 145 },] |
| 147 ], | 146 ], |
| 148 } | 147 } |
| 149 | 148 |
| 150 # Local Variables: | 149 # Local Variables: |
| 151 # tab-width:2 | 150 # tab-width:2 |
| 152 # indent-tabs-mode:nil | 151 # indent-tabs-mode:nil |
| 153 # End: | 152 # End: |
| 154 # vim: set expandtab tabstop=2 shiftwidth=2: | 153 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |