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

Unified Diff: third_party/sqlite/sqlite.gyp

Issue 1179573004: Correct iOS device build for latest Xcode beta. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nit Created 5 years, 6 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 | « third_party/libxml/libxml.gyp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/sqlite/sqlite.gyp
diff --git a/third_party/sqlite/sqlite.gyp b/third_party/sqlite/sqlite.gyp
index 21245dbae0b915233f0e6403f756d12b4967c52a..afd3f2b7df707b1dcb09082f9de3a694f3a27999 100644
--- a/third_party/sqlite/sqlite.gyp
+++ b/third_party/sqlite/sqlite.gyp
@@ -18,7 +18,7 @@
'SQLITE_ENABLE_MEMORY_MANAGEMENT',
'SQLITE_SECURE_DELETE',
# Custom flag to tweak pcache pools.
- # TODO(shess): This shouldn't use faux-SQLite naming.
+ # TODO(shess): This shouldn't use faux-SQLite naming.
'SQLITE_SEPARATE_CACHE_POOLS',
# TODO(shess): SQLite adds mutexes to protect structures which cross
# threads. In theory Chromium should be able to turn this off for a
@@ -81,9 +81,11 @@
'sqlite_regexp',
],
'link_settings': {
- 'libraries': [
- '$(SDKROOT)/usr/lib/libsqlite3.dylib',
- ],
+ 'xcode_settings': {
+ 'OTHER_LDFLAGS': [
+ '-lsqlite3',
+ ],
+ },
},
}],
['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
« no previous file with comments | « third_party/libxml/libxml.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698