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

Side by Side Diff: components/web_cache.gypi

Issue 528363002: Move webCacheManager to //components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove an unnecessary dependency in web_cache.gypi. 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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 'target_name': 'web_cache_common',
9 'type': 'static_library',
10 'dependencies': [
11 '<(DEPTH)/ipc/ipc.gyp:ipc',
12 ],
13 'sources': [
14 'web_cache/common/pref_names.cc',
15 'web_cache/common/pref_names.h',
16 'web_cache/common/web_cache_message_generator.cc',
17 'web_cache/common/web_cache_message_generator.h',
18 'web_cache/common/web_cache_messages.h',
19 ],
20 },
21 {
22 'target_name': 'web_cache_browser',
23 'type': 'static_library',
24 'dependencies': [
25 '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.
26 '<(DEPTH)/base/base.gyp:base',
27 '<(DEPTH)/content/content.gyp:content_browser',
28 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
29 ],
30 'sources': [
31 'web_cache/browser/web_cache_manager.cc',
32 'web_cache/browser/web_cache_manager.h',
33 ],
34 },
35 {
36 'target_name': 'web_cache_renderer',
37 'type': 'static_library',
38 'dependencies': [
39 '<(DEPTH)/content/content.gyp:content_renderer',
40 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
41 'web_cache_common',
42 ],
43 'sources': [
44 'web_cache/renderer/web_cache_render_process_observer.cc',
45 'web_cache/renderer/web_cache_render_process_observer.h',
46 ],
47 },
48 ],
49 }
50
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698