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

Unified Diff: webkit/browser/BUILD.gn

Issue 344493002: Move all remaining appcache-related code to content namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 6 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
Index: webkit/browser/BUILD.gn
diff --git a/webkit/browser/BUILD.gn b/webkit/browser/BUILD.gn
index e06af088504f9fead5d53525f57b01086b4ca58c..81930bf7f034cb2c2baecba121d26651cc613f75 100644
--- a/webkit/browser/BUILD.gn
+++ b/webkit/browser/BUILD.gn
@@ -2,54 +2,10 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-config("storage_config") {
- if (is_android) {
- defines = [ "APPCACHE_USE_SIMPLE_CACHE" ]
- }
-}
-
component("storage") {
output_name = "webkit_storage_browser"
sources = [
"webkit_storage_browser_export.h",
- "appcache/appcache.cc",
- "appcache/appcache.h",
- "appcache/appcache_backend_impl.cc",
- "appcache/appcache_backend_impl.h",
- "appcache/appcache_database.cc",
- "appcache/appcache_database.h",
- "appcache/appcache_disk_cache.cc",
- "appcache/appcache_disk_cache.h",
- "appcache/appcache_entry.h",
- "appcache/appcache_executable_handler.h",
- "appcache/appcache_group.cc",
- "appcache/appcache_group.h",
- "appcache/appcache_histograms.cc",
- "appcache/appcache_histograms.h",
- "appcache/appcache_host.cc",
- "appcache/appcache_host.h",
- "appcache/appcache_policy.h",
- "appcache/appcache_quota_client.cc",
- "appcache/appcache_quota_client.h",
- "appcache/appcache_request_handler.cc",
- "appcache/appcache_request_handler.h",
- "appcache/appcache_response.cc",
- "appcache/appcache_response.h",
- "appcache/appcache_service_impl.cc",
- "appcache/appcache_service_impl.h",
- "appcache/appcache_service.h",
- "appcache/appcache_storage.cc",
- "appcache/appcache_storage.h",
- "appcache/appcache_storage_impl.cc",
- "appcache/appcache_storage_impl.h",
- "appcache/appcache_working_set.cc",
- "appcache/appcache_working_set.h",
- "appcache/appcache_update_job.cc",
- "appcache/appcache_update_job.h",
- "appcache/appcache_url_request_job.cc",
- "appcache/appcache_url_request_job.h",
- "appcache/manifest_parser.cc",
- "appcache/manifest_parser.h",
"blob/blob_data_handle.cc",
"blob/blob_data_handle.h",
"blob/blob_storage_context.cc",
@@ -198,7 +154,6 @@ component("storage") {
defines = [ "WEBKIT_STORAGE_BROWSER_IMPLEMENTATION" ]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
- direct_dependent_configs = [ ":storage_config" ]
if (is_win) {
cflags = [ "/wd4267" ] # TODO(jschuh): fix size_t to int truncations.
}

Powered by Google App Engine
This is Rietveld 408576698