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

Side by Side Diff: components/dns_prefetch.gypi

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: trybot fixes: 1) hide gyp target from ios 2) UintToString --> SizeTToString Created 6 years, 1 month 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 'conditions': [
28 ['OS!="ios"', {
29 'targets': [
30 {
31 # GN version: //components/dns_prefetch/renderer
32 'target_name': 'dns_prefetch_renderer',
33 'type': 'static_library',
34 'include_dirs': [
35 '..',
36 ],
37 'dependencies': [
38 'dns_prefetch_common',
39 '../content/content.gyp:content_renderer',
40 ],
41 'sources': [
42 'dns_prefetch/renderer/predictor_queue.cc',
43 'dns_prefetch/renderer/predictor_queue.h',
44 'dns_prefetch/renderer/renderer_net_predictor.cc',
45 'dns_prefetch/renderer/renderer_net_predictor.h',
46 ],
47 },
48 ],
49 }],
50 ],
51 }
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