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 = [ |
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 | 93 |
94 deps = [ | 94 deps = [ |
95 ":sqlite", | 95 ":sqlite", |
96 "//third_party/icu", | 96 "//third_party/icu", |
97 ] | 97 ] |
98 } | 98 } |
99 } | 99 } |
100 | 100 |
101 if (is_ios) { | 101 if (is_ios) { |
102 source_set("sqlite_regexp") { | 102 source_set("sqlite_regexp") { |
103 defines += [ | 103 defines = [ |
104 # Necessary to statically compile the extension. | 104 # Necessary to statically compile the extension. |
105 "SQLITE_CORE", | 105 "SQLITE_CORE", |
106 ] | 106 ] |
107 sources = [ | 107 sources = [ |
108 "src/ext/icu/icu.c", | 108 "src/ext/icu/icu.c", |
109 ] | 109 ] |
110 deps = [ | 110 deps = [ |
111 "//third_party/icu", | 111 "//third_party/icu", |
112 ] | 112 ] |
113 } | 113 } |
114 } | 114 } |
OLD | NEW |