Chromium Code Reviews| Index: webkit/browser/BUILD.gn |
| diff --git a/webkit/browser/BUILD.gn b/webkit/browser/BUILD.gn |
| index 1299819ee772653168ec0b4500f389ea73c4affb..d2532e836ef7fb0da7e093d53aadddaa1e73b33c 100644 |
| --- a/webkit/browser/BUILD.gn |
| +++ b/webkit/browser/BUILD.gn |
| @@ -5,7 +5,7 @@ |
| component("storage") { |
| output_name = "storage" |
| sources = [ |
| - "storage_export.h", |
| + "../common/storage_export.h", |
|
jamesr
2014/08/29 20:46:10
this should be using its own export header
|
| "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_IMPLEMENTATION" ] |
|
jamesr
2014/08/29 20:46:10
this should be something like STORAGE_BROWSER_IMPL
|
| 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", |
| ] |
| } |