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

Unified Diff: sql/BUILD.gn

Issue 2623083002: [sql] Move time-machine support from third_party/sqlite to sql/ (Closed)
Patch Set: scoped-ref in test, too, iwyu pass to remove leftover-from-prototype includes. Created 3 years, 11 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 | sql/connection.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sql/BUILD.gn
diff --git a/sql/BUILD.gn b/sql/BUILD.gn
index 030e9ff49f158d42de36bcf93d8c859a7aacd089..aadf85a354ff98a4aa7a546946e96c9b31bf25d6 100644
--- a/sql/BUILD.gn
+++ b/sql/BUILD.gn
@@ -23,6 +23,8 @@ component("sql") {
"statement.h",
"transaction.cc",
"transaction.h",
+ "vfs_wrapper.cc",
+ "vfs_wrapper.h",
]
# TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
@@ -35,6 +37,14 @@ component("sql") {
"//base/third_party/dynamic_annotations",
"//third_party/sqlite",
]
+
+ # For vfs_wrapper.cc time-machine exclusions.
+ if (is_mac) {
+ libs = [
+ "CoreFoundation.framework",
+ "CoreServices.framework",
+ ]
+ }
}
static_library("test_support") {
« no previous file with comments | « no previous file | sql/connection.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698