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

Side by Side Diff: third_party/sqlite/BUILD.gn

Issue 1307363007: Revert of [sqlite] Respect the gyp and gn component switch. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « sql/sql.gyp ('k') | third_party/sqlite/sqlite.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 declare_args() { 5 declare_args() {
6 # Controls whether the build should uses the version of sqlite3 library 6 # Controls whether the build should uses the version of sqlite3 library
7 # shipped with the system (currently only supported on iOS) or the one 7 # shipped with the system (currently only supported on iOS) or the one
8 # shipped with Chromium source. 8 # shipped with Chromium source.
9 use_system_sqlite = is_ios 9 use_system_sqlite = is_ios
10 } 10 }
11 11
12 if (!use_system_sqlite) { 12 if (!use_system_sqlite) {
13 config("sqlite_config") { 13 config("sqlite_config") {
14 if (is_component_build && is_win) {
15 defines = [ "SQLITE_API=__declspec(dllimport)" ]
16 }
17 include_dirs = [ "." ] 14 include_dirs = [ "." ]
18 } 15 }
19 16
20 component("sqlite") { 17 source_set("sqlite") {
21 sources = [ 18 sources = [
22 "amalgamation/sqlite3.c", 19 "amalgamation/sqlite3.c",
23 "amalgamation/sqlite3.h", 20 "amalgamation/sqlite3.h",
24 ] 21 ]
25 22
26 cflags = [] 23 cflags = []
27 defines = [ 24 defines = [
28 "SQLITE_ENABLE_FTS3", 25 "SQLITE_ENABLE_FTS3",
29 "SQLITE_DISABLE_FTS3_UNICODE", 26 "SQLITE_DISABLE_FTS3_UNICODE",
30 "SQLITE_DISABLE_FTS4_DEFERRED", 27 "SQLITE_DISABLE_FTS4_DEFERRED",
31 "SQLITE_ENABLE_ICU", 28 "SQLITE_ENABLE_ICU",
32 "SQLITE_ENABLE_MEMORY_MANAGEMENT", 29 "SQLITE_ENABLE_MEMORY_MANAGEMENT",
33 "SQLITE_SECURE_DELETE", 30 "SQLITE_SECURE_DELETE",
34 "SQLITE_SEPARATE_CACHE_POOLS", 31 "SQLITE_SEPARATE_CACHE_POOLS",
35 "THREADSAFE", 32 "THREADSAFE",
36 ] 33 ]
37 if (is_component_build) {
38 if (is_win) {
39 defines += [ "SQLITE_API=__declspec(dllexport)" ]
40 } else {
41 defines += [ "SQLITE_API=__attribute__((visibility(\"default\")))" ]
42 }
43 }
44 if (is_chromeos) { 34 if (is_chromeos) {
45 defines += [ 35 defines += [
46 # Despite obvious warnings about not using this flag in deployment, we 36 # Despite obvious warnings about not using this flag in deployment, we
47 # are turning off sync in ChromeOS and relying on the underlying 37 # are turning off sync in ChromeOS and relying on the underlying
48 # journaling filesystem to do error recovery properly. It's much faster. 38 # journaling filesystem to do error recovery properly. It's much faster.
49 "SQLITE_NO_SYNC", 39 "SQLITE_NO_SYNC",
50 ] 40 ]
51 } 41 }
52 if (is_posix) { 42 if (is_posix) {
53 defines += [ 43 defines += [
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
87 ] 77 ]
88 } 78 }
89 } 79 }
90 configs -= [ "//build/config/compiler:chromium_code" ] 80 configs -= [ "//build/config/compiler:chromium_code" ]
91 configs += [ "//build/config/compiler:no_chromium_code" ] 81 configs += [ "//build/config/compiler:no_chromium_code" ]
92 configs += [ ":sqlite_warnings" ] 82 configs += [ ":sqlite_warnings" ]
93 83
94 if (is_linux) { 84 if (is_linux) {
95 libs = [ "dl" ] 85 libs = [ "dl" ]
96 } else if (is_mac || is_ios) { 86 } else if (is_mac || is_ios) {
97 libs = [ 87 libs = [ "CoreFoundation.framework" ]
98 "CoreFoundation.framework",
99 "CoreServices.framework",
100 ]
101 } else if (is_android) { 88 } else if (is_android) {
102 defines += [ 89 defines += [
103 "SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=1048576", 90 "SQLITE_DEFAULT_JOURNAL_SIZE_LIMIT=1048576",
104 "SQLITE_DEFAULT_AUTOVACUUM=1", 91 "SQLITE_DEFAULT_AUTOVACUUM=1",
105 "SQLITE_TEMP_STORE=3", 92 "SQLITE_TEMP_STORE=3",
106 "SQLITE_ENABLE_FTS3_BACKWARDS", 93 "SQLITE_ENABLE_FTS3_BACKWARDS",
107 "DSQLITE_DEFAULT_FILE_FORMAT=4", 94 "DSQLITE_DEFAULT_FILE_FORMAT=4",
108 ] 95 ]
109 } 96 }
110 97
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 "//third_party/icu", 164 "//third_party/icu",
178 ] 165 ]
179 if (is_clang) { 166 if (is_clang) {
180 # src/ext/icu/icu.c uses assert(!"string") which causes warnings about 167 # src/ext/icu/icu.c uses assert(!"string") which causes warnings about
181 # conversion from string literal to bool. 168 # conversion from string literal to bool.
182 configs -= [ "//build/config/clang:extra_warnings" ] 169 configs -= [ "//build/config/clang:extra_warnings" ]
183 } 170 }
184 } 171 }
185 } 172 }
186 } 173 }
OLDNEW
« no previous file with comments | « sql/sql.gyp ('k') | third_party/sqlite/sqlite.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698