| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 config("sqlite_config") { | 5 config("sqlite_config") { |
| 6 include_dirs = [ "." ] | 6 include_dirs = [ "." ] |
| 7 } | 7 } |
| 8 | 8 |
| 9 source_set("sqlite") { | 9 source_set("sqlite") { |
| 10 sources = [ | 10 sources = [ |
| 11 "amalgamation/sqlite3.c", |
| 11 "amalgamation/sqlite3.h", | 12 "amalgamation/sqlite3.h", |
| 12 "amalgamation/sqlite3.c", | |
| 13 | 13 |
| 14 # fts2.c currently has a lot of conflicts when added to | 14 # fts2.c currently has a lot of conflicts when added to |
| 15 # the amalgamation. It is probably not worth fixing that. | 15 # the amalgamation. It is probably not worth fixing that. |
| 16 "src/ext/fts2/fts2.c", | 16 "src/ext/fts2/fts2.c", |
| 17 "src/ext/fts2/fts2.h", | 17 "src/ext/fts2/fts2.h", |
| 18 "src/ext/fts2/fts2_hash.c", | 18 "src/ext/fts2/fts2_hash.c", |
| 19 "src/ext/fts2/fts2_hash.h", | 19 "src/ext/fts2/fts2_hash.h", |
| 20 "src/ext/fts2/fts2_icu.c", | 20 "src/ext/fts2/fts2_icu.c", |
| 21 "src/ext/fts2/fts2_porter.c", | 21 "src/ext/fts2/fts2_porter.c", |
| 22 "src/ext/fts2/fts2_tokenizer.c", | 22 "src/ext/fts2/fts2_tokenizer.c", |
| (...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 if (is_ios) { | 113 if (is_ios) { |
| 114 source_set("sqlite_regexp") { | 114 source_set("sqlite_regexp") { |
| 115 sources = [ | 115 sources = [ |
| 116 "src/ext/icu/icu.c", | 116 "src/ext/icu/icu.c", |
| 117 ] | 117 ] |
| 118 deps = [ | 118 deps = [ |
| 119 "//third_party/icu", | 119 "//third_party/icu", |
| 120 ] | 120 ] |
| 121 } | 121 } |
| 122 } | 122 } |
| OLD | NEW |