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

Side by Side Diff: components/web_cache.gypi

Issue 2306443002: Remove GYP files from components. (Closed)
Patch Set: Remove compiled resources Created 4 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
« no previous file with comments | « components/wallpaper.gypi ('k') | components/web_contents_delegate_android.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 # GN version: //components/web_cache/public/interfaces
9 'target_name': 'web_cache_mojo_bindings',
10 'type': 'static_library',
11 'sources': [
12 # NOTE: Sources duplicated in //components/web_cache/public/interfaces/B UILD.gn
13 'web_cache/public/interfaces/web_cache.mojom',
14 ],
15 'includes': [ '../mojo/mojom_bindings_generator.gypi'],
16 },
17 {
18 'target_name': 'web_cache_browser',
19 'type': 'static_library',
20 'dependencies': [
21 '<(DEPTH)/base/base.gyp:base',
22 '<(DEPTH)/content/content.gyp:content_browser',
23 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
24 'web_cache_mojo_bindings',
25 ],
26 'sources': [
27 'web_cache/browser/web_cache_manager.cc',
28 'web_cache/browser/web_cache_manager.h',
29 ],
30 # Disable c4267 warnings until we fix size_t to int truncations.
31 'msvs_disabled_warnings': [ 4267, ],
32 },
33 {
34 'target_name': 'web_cache_renderer',
35 'type': 'static_library',
36 'dependencies': [
37 '<(DEPTH)/base/base.gyp:base',
38 '<(DEPTH)/content/content.gyp:content_renderer',
39 '<(DEPTH)/third_party/WebKit/public/blink.gyp:blink',
40 'web_cache_mojo_bindings',
41 ],
42 'sources': [
43 'web_cache/renderer/web_cache_impl.cc',
44 'web_cache/renderer/web_cache_impl.h',
45 ],
46 },
47 ],
48 }
OLDNEW
« no previous file with comments | « components/wallpaper.gypi ('k') | components/web_contents_delegate_android.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698