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

Unified Diff: components/dns_prefetch/renderer/BUILD.gn

Issue 644123002: Componentize renderer side of DNS prefetching. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 2 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 side-by-side diff with in-line comments
Download patch
Index: components/dns_prefetch/renderer/BUILD.gn
diff --git a/components/dns_prefetch/renderer/BUILD.gn b/components/dns_prefetch/renderer/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..882037c4d2bd02a0a247c2b050eeda1d7dc9e889
--- /dev/null
+++ b/components/dns_prefetch/renderer/BUILD.gn
@@ -0,0 +1,18 @@
+# Copyright 2014 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+# GYP version: components/dns_prefetch.gypi:predictor_renderer
+source_set("renderer") {
+ sources = [
+ "predictor_queue.cc",
+ "predictor_queue.h",
+ "renderer_net_predictor.cc",
+ "renderer_net_predictor.h",
+ ]
+
+ public_deps = [
+ "//components/dns_prefetch/common",
+ "//content/public/renderer",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698