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

Unified Diff: webkit/storage/webkit_storage.gypi

Issue 15716007: Split webkit_storage target into webkit_storage_{browser,common,renderer} (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: char* -> char[] Created 7 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
« no previous file with comments | « webkit/plugins/webkit_plugins.gypi ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/storage/webkit_storage.gypi
diff --git a/webkit/storage/webkit_storage.gypi b/webkit/storage/webkit_storage.gypi
deleted file mode 100644
index fd487e66c591bb93253fb37983f409bacd1e496c..0000000000000000000000000000000000000000
--- a/webkit/storage/webkit_storage.gypi
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright (c) 2012 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-{
- 'includes': [
- # TODO(kinuko): Deprecate this when we have a new target for
- # webkit_browser. crbug.com/239710
- '../browser/webkit_browser.gypi',
- '../common/webkit_common.gypi',
- ],
- 'targets': [
- {
- 'target_name': 'webkit_storage',
- 'type': '<(component)',
- 'variables': { 'enable_wexit_time_destructors': 1, },
- 'dependencies': [
- '<(DEPTH)/base/base.gyp:base',
- '<(DEPTH)/base/base.gyp:base_i18n',
- '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
- '<(DEPTH)/net/net.gyp:net',
- '<(DEPTH)/sql/sql.gyp:sql',
- '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
- '<(DEPTH)/third_party/leveldatabase/leveldatabase.gyp:leveldatabase',
- '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
- '<(DEPTH)/url/url.gyp:url_lib',
- '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_base',
- ],
- 'defines': ['WEBKIT_STORAGE_IMPLEMENTATION'],
- 'sources': [
- '../storage/webkit_storage_export.h',
-
- # TODO(kinuko): Deprecate them when we have new targets for
- # browser|common|renderer. crbug.com/239710
- '<@(webkit_browser_storage_sources)',
- '<@(webkit_common_storage_sources)',
- '../renderer/appcache/appcache_frontend_impl.cc',
- '../renderer/appcache/appcache_frontend_impl.h',
- '../renderer/appcache/web_application_cache_host_impl.cc',
- '../renderer/appcache/web_application_cache_host_impl.h',
- '../renderer/dom_storage/dom_storage_cached_area.cc',
- '../renderer/dom_storage/dom_storage_cached_area.h',
- '../renderer/dom_storage/dom_storage_proxy.h',
- '../renderer/fileapi/webfilewriter_base.cc',
- '../renderer/fileapi/webfilewriter_base.h',
- ],
- 'conditions': [
- ['chromeos==1', {
- 'sources': [
- '<@(webkit_browser_fileapi_chromeos_sources)',
- ],
- }],
- ],
- # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
- 'msvs_disabled_warnings': [ 4267, ],
- },
- ],
-}
« no previous file with comments | « webkit/plugins/webkit_plugins.gypi ('k') | webkit/storage_browser.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698