OLD | NEW |
---|---|
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 Loading... | |
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 } |
OLD | NEW |