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

Side by Side Diff: components/web_cache.gypi

Issue 1706603004: Replace web_cache_messages.h with Mojo service. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved. 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 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/web_cache/common
8 'target_name': 'web_cache_common', 9 'target_name': 'web_cache_common',
Ken Rockot(use gerrit already) 2016/02/18 03:45:06 I think we should rename this to web_cache_mojo_bi
leonhsl(Using Gerrit) 2016/02/18 08:56:22 Renamed to web_cache_mojo_bindings.
9 'type': 'static_library', 10 'type': 'static_library',
10 'dependencies': [ 11 'variables': {
11 '<(DEPTH)/ipc/ipc.gyp:ipc', 12 'mojom_files': [
12 ], 13 # NOTE: Sources duplicated in //components/web_cache/common/BUILD.gn
13 'sources': [ 14 'web_cache/common/web_cache_service.mojom',
14 'web_cache/common/web_cache_message_generator.cc', 15 ],
15 'web_cache/common/web_cache_message_generator.h', 16 },
16 'web_cache/common/web_cache_messages.h', 17 'includes': [ '../mojo/mojom_bindings_generator.gypi'],
Ken Rockot(use gerrit already) 2016/02/18 03:45:06 For mojom_bindings_generator.gypi you just use 'so
leonhsl(Using Gerrit) 2016/02/18 08:56:22 Understood and Done.
17 ],
18 }, 18 },
19 { 19 {
20 'target_name': 'web_cache_browser', 20 'target_name': 'web_cache_browser',
21 'type': 'static_library', 21 'type': 'static_library',
22 'dependencies': [ 22 'dependencies': [
23 '<(DEPTH)/base/base.gyp:base', 23 '<(DEPTH)/base/base.gyp:base',
24 '<(DEPTH)/content/content.gyp:content_browser', 24 '<(DEPTH)/content/content.gyp:content_browser',
25 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 25 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
26 'web_cache_common', 26 'web_cache_common',
27 ], 27 ],
(...skipping 13 matching lines...) Expand all
41 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', 41 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
42 'web_cache_common', 42 'web_cache_common',
43 ], 43 ],
44 'sources': [ 44 'sources': [
45 'web_cache/renderer/web_cache_render_process_observer.cc', 45 'web_cache/renderer/web_cache_render_process_observer.cc',
46 'web_cache/renderer/web_cache_render_process_observer.h', 46 'web_cache/renderer/web_cache_render_process_observer.h',
47 ], 47 ],
48 }, 48 },
49 ], 49 ],
50 } 50 }
OLDNEW
« no previous file with comments | « no previous file | components/web_cache/browser/web_cache_manager.h » ('j') | components/web_cache/browser/web_cache_manager.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698