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/public/interfaces | 8 # GN version: //components/web_cache/public/interfaces |
9 'target_name': 'web_cache_mojo_bindings', | 9 'target_name': 'web_cache_mojo_bindings', |
10 'type': 'static_library', | 10 'type': 'static_library', |
11 'sources': [ | 11 'sources': [ |
12 # NOTE: Sources duplicated in //components/web_cache/public/interfaces/B
UILD.gn | 12 # NOTE: Sources duplicated in //components/web_cache/public/interfaces/B
UILD.gn |
13 'web_cache/public/interfaces/web_cache.mojom', | 13 'web_cache/public/interfaces/web_cache.mojom', |
14 ], | 14 ], |
15 'variables': { | |
16 'use_new_wrapper_types': 'false', | |
17 }, | |
18 'includes': [ '../mojo/mojom_bindings_generator.gypi'], | 15 'includes': [ '../mojo/mojom_bindings_generator.gypi'], |
19 }, | 16 }, |
20 { | 17 { |
21 'target_name': 'web_cache_browser', | 18 'target_name': 'web_cache_browser', |
22 'type': 'static_library', | 19 'type': 'static_library', |
23 'dependencies': [ | 20 'dependencies': [ |
24 '<(DEPTH)/base/base.gyp:base', | 21 '<(DEPTH)/base/base.gyp:base', |
25 '<(DEPTH)/content/content.gyp:content_browser', | 22 '<(DEPTH)/content/content.gyp:content_browser', |
26 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 23 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
27 'web_cache_mojo_bindings', | 24 'web_cache_mojo_bindings', |
(...skipping 14 matching lines...) Expand all Loading... |
42 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 39 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
43 'web_cache_mojo_bindings', | 40 'web_cache_mojo_bindings', |
44 ], | 41 ], |
45 'sources': [ | 42 'sources': [ |
46 'web_cache/renderer/web_cache_impl.cc', | 43 'web_cache/renderer/web_cache_impl.cc', |
47 'web_cache/renderer/web_cache_impl.h', | 44 'web_cache/renderer/web_cache_impl.h', |
48 ], | 45 ], |
49 }, | 46 }, |
50 ], | 47 ], |
51 } | 48 } |
OLD | NEW |