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

Unified Diff: components/web_cache.gypi

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 3 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: components/web_cache.gypi
diff --git a/components/web_cache.gypi b/components/web_cache.gypi
new file mode 100644
index 0000000000000000000000000000000000000000..a42e34422cff090fd4785720dfa616f8f2356546
--- /dev/null
+++ b/components/web_cache.gypi
@@ -0,0 +1,57 @@
+# Copyright (c) 2014 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.
+
+{
+ 'targets': [
+ {
+ 'target_name': 'web_cache_common',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/ipc/ipc.gyp:ipc',
+ ],
+ 'sources': [
+ 'web_cache/common/web_cache_message_generator.cc',
+ 'web_cache/common/web_cache_message_generator.h',
+ 'web_cache/common/web_cache_messages.h',
+ ],
+ },
+ {
+ 'target_name': 'web_cache_browser',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/content/content.gyp:content_browser',
+ '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
+ 'web_cache_common',
+ ],
+ 'sources': [
+ 'web_cache/browser/web_cache_manager.cc',
+ 'web_cache/browser/web_cache_manager.h',
+ ],
+ # Disable c4267 warnings until we fix size_t to int truncations.
+ 'msvs_disabled_warnings': [ 4267, ],
+ 'conditions': [
+ ['OS=="win" and win_use_allocator_shim==1', {
+ 'dependencies': [
+ '../base/allocator/allocator.gyp:allocator',
+ ],
+ }],
+ ],
+ },
+ {
+ 'target_name': 'web_cache_renderer',
+ 'type': 'static_library',
+ 'dependencies': [
+ '<(DEPTH)/base/base.gyp:base',
+ '<(DEPTH)/content/content.gyp:content_renderer',
+ '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
+ 'web_cache_common',
+ ],
+ 'sources': [
+ 'web_cache/renderer/web_cache_render_process_observer.cc',
+ 'web_cache/renderer/web_cache_render_process_observer.h',
+ ],
+ },
+ ],
+}

Powered by Google App Engine
This is Rietveld 408576698