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

Unified Diff: webkit/browser/BUILD.gn

Issue 520913003: Split storage macros into storage and storage_common (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix header guard Created 6 years, 4 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 | « content/test/BUILD.gn ('k') | webkit/browser/blob/blob_data_handle.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/browser/BUILD.gn
diff --git a/webkit/browser/BUILD.gn b/webkit/browser/BUILD.gn
index 1299819ee772653168ec0b4500f389ea73c4affb..ab47b35da50cb1b516a08ac0f5c6db9afc5b0200 100644
--- a/webkit/browser/BUILD.gn
+++ b/webkit/browser/BUILD.gn
@@ -5,7 +5,7 @@
component("storage") {
output_name = "storage"
sources = [
- "storage_export.h",
+ "storage_browser_export.h",
"blob/blob_data_handle.cc",
"blob/blob_data_handle.h",
"blob/blob_storage_context.cc",
@@ -152,7 +152,7 @@ component("storage") {
"quota/usage_tracker.h",
]
- defines = [ "WEBKIT_STORAGE_BROWSER_IMPLEMENTATION" ]
+ defines = [ "STORAGE_BROWSER_IMPLEMENTATION" ]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
if (is_win) {
cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
@@ -168,7 +168,7 @@ component("storage") {
"//third_party/sqlite",
"//url",
"//webkit/common",
- "//webkit/common:storage",
+ "//webkit/common:storage_common",
]
# TODO(GYP) support chrome_multiple_dll
@@ -187,6 +187,6 @@ executable("dump_file_system") {
deps = [
":storage",
"//base",
- "//webkit/common:storage",
+ "//webkit/common:storage_common",
]
}
« no previous file with comments | « content/test/BUILD.gn ('k') | webkit/browser/blob/blob_data_handle.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698