OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 # GYP version: components/dns_prefetch.gypi:predictor_renderer | 5 # GYP version: components/network_hints.gypi:predictor_renderer |
6 source_set("renderer") { | 6 source_set("renderer") { |
7 sources = [ | 7 sources = [ |
8 "predictor_queue.cc", | 8 "dns_prefetch_queue.cc", |
9 "predictor_queue.h", | 9 "dns_prefetch_queue.h", |
10 "prescient_networking_dispatcher.cc", | 10 "prescient_networking_dispatcher.cc", |
11 "prescient_networking_dispatcher.h", | 11 "prescient_networking_dispatcher.h", |
12 "renderer_net_predictor.cc", | 12 "renderer_dns_prefetch.cc", |
13 "renderer_net_predictor.h", | 13 "renderer_dns_prefetch.h", |
14 ] | 14 ] |
15 | 15 |
16 public_deps = [ | 16 public_deps = [ |
17 "//components/dns_prefetch/common", | 17 "//components/network_hints/common", |
18 "//content/public/renderer", | 18 "//content/public/renderer", |
19 "//third_party/WebKit/public:blink", | 19 "//third_party/WebKit/public:blink", |
20 ] | 20 ] |
21 } | 21 } |
OLD | NEW |