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

Side by Side Diff: components/network_hints.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/net_log.gypi ('k') | components/network_session_configurator.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 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/network_hints/common
9 'target_name': 'network_hints_common',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../ui/accessibility/accessibility.gyp:accessibility',
17 '../url/ipc/url_ipc.gyp:url_ipc',
18 ],
19 'sources': [
20 'network_hints/common/network_hints_common.cc',
21 'network_hints/common/network_hints_common.h',
22 'network_hints/common/network_hints_message_generator.cc',
23 'network_hints/common/network_hints_message_generator.h',
24 'network_hints/common/network_hints_messages.cc',
25 'network_hints/common/network_hints_messages.h',
26 ],
27 },
28 {
29 # GN version: //components/network_hints/browser
30 'target_name': 'network_hints_browser',
31 'type': 'static_library',
32 'include_dirs': [
33 '..',
34 ],
35 'dependencies': [
36 '../content/content.gyp:content_browser',
37 '../net/net.gyp:net',
38 ],
39 'sources': [
40 'network_hints/browser/network_hints_message_filter.cc',
41 'network_hints/browser/network_hints_message_filter.h',
42 ],
43 },
44 ],
45 'conditions': [
46 ['OS!="ios"', {
47 'targets': [
48 {
49 # GN version: //components/network_hints/renderer
50 'target_name': 'network_hints_renderer',
51 'type': 'static_library',
52 'include_dirs': [
53 '..',
54 ],
55 'dependencies': [
56 'network_hints_common',
57 '../content/content.gyp:content_renderer',
58 '../third_party/WebKit/public/blink.gyp:blink',
59 ],
60 'sources': [
61 'network_hints/renderer/dns_prefetch_queue.cc',
62 'network_hints/renderer/dns_prefetch_queue.h',
63 'network_hints/renderer/prescient_networking_dispatcher.cc',
64 'network_hints/renderer/prescient_networking_dispatcher.h',
65 'network_hints/renderer/renderer_dns_prefetch.cc',
66 'network_hints/renderer/renderer_dns_prefetch.h',
67 'network_hints/renderer/renderer_preconnect.cc',
68 'network_hints/renderer/renderer_preconnect.h',
69 ],
70 },
71 ],
72 }],
73 ],
74 }
OLDNEW
« no previous file with comments | « components/net_log.gypi ('k') | components/network_session_configurator.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698