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..b47a68db2e28acb47217f74dfefe1444768ce706 |
| --- /dev/null |
| +++ b/components/web_cache.gypi |
| @@ -0,0 +1,50 @@ |
| +# 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/pref_names.cc', |
| + 'web_cache/common/pref_names.h', |
| + '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': [ |
| + 'web_cache_common', |
|
James Cook
2014/09/05 16:53:18
nit: put this at the bottom of the list
Xi Han
2014/09/05 19:39:24
Done.
|
| + '<(DEPTH)/base/base.gyp:base', |
| + '<(DEPTH)/content/content.gyp:content_browser', |
| + '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
| + ], |
| + 'sources': [ |
| + 'web_cache/browser/web_cache_manager.cc', |
| + 'web_cache/browser/web_cache_manager.h', |
| + ], |
| + }, |
| + { |
| + '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': [ |
| + 'web_cache/renderer/web_cache_render_process_observer.cc', |
| + 'web_cache/renderer/web_cache_render_process_observer.h', |
| + ], |
| + }, |
| + ], |
| +} |
| + |