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

Unified Diff: webkit/common/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: move storage_export.h back to browser/ and rename storage_browser_export.h 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
Index: webkit/common/BUILD.gn
diff --git a/webkit/common/BUILD.gn b/webkit/common/BUILD.gn
index d56622c516ad3c162cc4b7533ff853aec3865064..591f299652d27b2f6aac17711c2f042464019a0f 100644
--- a/webkit/common/BUILD.gn
+++ b/webkit/common/BUILD.gn
@@ -20,10 +20,10 @@ component("common") {
]
}
-component("storage") {
- output_name = "storage_common"
+component("storage_common") {
+ output_name = "storage"
sources = [
- "storage_export.h",
+ "storage_common_export.h",
"blob/blob_data.cc",
"blob/blob_data.h",
"blob/scoped_file.cc",
@@ -47,7 +47,7 @@ component("storage") {
"quota/quota_types.h",
]
- defines = [ "WEBKIT_STORAGE_COMMON_IMPLEMENTATION" ]
+ defines = [ "STORAGE_COMMON_IMPLEMENTATION" ]
if (is_win) {
cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
}

Powered by Google App Engine
This is Rietveld 408576698