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 }, |
15 'includes': [ '../mojo/mojom_bindings_generator.gypi'], | 18 'includes': [ '../mojo/mojom_bindings_generator.gypi'], |
16 }, | 19 }, |
17 { | 20 { |
18 'target_name': 'web_cache_browser', | 21 'target_name': 'web_cache_browser', |
19 'type': 'static_library', | 22 'type': 'static_library', |
20 'dependencies': [ | 23 'dependencies': [ |
21 '<(DEPTH)/base/base.gyp:base', | 24 '<(DEPTH)/base/base.gyp:base', |
22 '<(DEPTH)/content/content.gyp:content_browser', | 25 '<(DEPTH)/content/content.gyp:content_browser', |
23 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 26 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
24 'web_cache_mojo_bindings', | 27 'web_cache_mojo_bindings', |
(...skipping 14 matching lines...) Expand all Loading... |
39 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', | 42 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink', |
40 'web_cache_mojo_bindings', | 43 'web_cache_mojo_bindings', |
41 ], | 44 ], |
42 'sources': [ | 45 'sources': [ |
43 'web_cache/renderer/web_cache_impl.cc', | 46 'web_cache/renderer/web_cache_impl.cc', |
44 'web_cache/renderer/web_cache_impl.h', | 47 'web_cache/renderer/web_cache_impl.h', |
45 ], | 48 ], |
46 }, | 49 }, |
47 ], | 50 ], |
48 } | 51 } |
OLD | NEW |