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

Side by Side Diff: components/dns_prefetch.gypi

Issue 848303005: Renamed the dns_prefetch component to network_predictor (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 5 years, 10 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/components_tests.gyp ('k') | components/dns_prefetch/OWNERS » ('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/dns_prefetch/common
9 'target_name': 'dns_prefetch_common',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 ],
17 'sources': [
18 'dns_prefetch/common/prefetch_common.cc',
19 'dns_prefetch/common/prefetch_common.h',
20 'dns_prefetch/common/prefetch_message_generator.cc',
21 'dns_prefetch/common/prefetch_message_generator.h',
22 'dns_prefetch/common/prefetch_messages.cc',
23 'dns_prefetch/common/prefetch_messages.h',
24 ],
25 },
26 {
27 # GN version: //components/dns_prefetch/browser
28 'target_name': 'dns_prefetch_browser',
29 'type': 'static_library',
30 'include_dirs': [
31 '..',
32 ],
33 'dependencies': [
34 '../content/content.gyp:content_browser',
35 '../net/net.gyp:net',
36 ],
37 'sources': [
38 'dns_prefetch/browser/net_message_filter.cc',
39 'dns_prefetch/browser/net_message_filter.h',
40 ],
41 },
42 ],
43 'conditions': [
44 ['OS!="ios"', {
45 'targets': [
46 {
47 # GN version: //components/dns_prefetch/renderer
48 'target_name': 'dns_prefetch_renderer',
49 'type': 'static_library',
50 'include_dirs': [
51 '..',
52 ],
53 'dependencies': [
54 'dns_prefetch_common',
55 '../content/content.gyp:content_renderer',
56 '../third_party/WebKit/public/blink.gyp:blink',
57 ],
58 'sources': [
59 'dns_prefetch/renderer/predictor_queue.cc',
60 'dns_prefetch/renderer/predictor_queue.h',
61 'dns_prefetch/renderer/prescient_networking_dispatcher.cc',
62 'dns_prefetch/renderer/prescient_networking_dispatcher.h',
63 'dns_prefetch/renderer/renderer_net_predictor.cc',
64 'dns_prefetch/renderer/renderer_net_predictor.h',
65 ],
66 },
67 ],
68 }],
69 ],
70 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/dns_prefetch/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698