Chromium Code Reviews| Index: components/web_cache.gypi |
| diff --git a/components/web_cache.gypi b/components/web_cache.gypi |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..f9bec030d063426d3a8fe6ed9715119e834be6ea |
| --- /dev/null |
| +++ b/components/web_cache.gypi |
| @@ -0,0 +1,58 @@ |
| +# 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)/content/content.gyp:content_renderer', |
| + '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| + 'web_cache_common', |
| + ], |
| + 'sources': [ |
| + '<(DEPTH)/base/base.gyp:base', |
|
James Cook
2014/09/05 19:47:58
This is not a source file. If it's a dependency it
Xi Han
2014/09/05 21:01:42
Sorry, put it in the wrong place.
|
| + 'web_cache/renderer/web_cache_render_process_observer.cc', |
| + 'web_cache/renderer/web_cache_render_process_observer.h', |
| + ], |
| + }, |
| + ], |
| +} |
| + |