Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(16)

Unified Diff: third_party/sqlite/BUILD.gn

Issue 1073293002: [sql] Remove fts2 patches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Put back SQLITE_CORE only for the icu component for iOS Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/sqlite/README.chromium » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/BUILD.gn
diff --git a/third_party/sqlite/BUILD.gn b/third_party/sqlite/BUILD.gn
index 526d16b195a5c903c88f575c43b33d81d3603c04..922136913b7d86d2531ceb4360c1c8166c1186a6 100644
--- a/third_party/sqlite/BUILD.gn
+++ b/third_party/sqlite/BUILD.gn
@@ -14,7 +14,6 @@ source_set("sqlite") {
cflags = []
defines = [
- "SQLITE_CORE",
"SQLITE_ENABLE_FTS3",
"SQLITE_DISABLE_FTS3_UNICODE",
"SQLITE_DISABLE_FTS4_DEFERRED",
@@ -101,6 +100,10 @@ if (is_linux) {
if (is_ios) {
source_set("sqlite_regexp") {
+ defines += [
+ # Necessary to statically compile the extension.
+ "SQLITE_CORE",
+ ]
sources = [
"src/ext/icu/icu.c",
]
« no previous file with comments | « no previous file | third_party/sqlite/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698