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

Unified Diff: components/offline_pages/background/BUILD.gn

Issue 1929223002: Add skeletons for the factories to create the request coordinator and (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Manual merge of changes in the base changelist. Created 4 years, 8 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/offline_pages/background/BUILD.gn
diff --git a/components/offline_pages/background/BUILD.gn b/components/offline_pages/background/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..26d8934ee43ffab8dfa546bcd48d3be3893828d0
--- /dev/null
+++ b/components/offline_pages/background/BUILD.gn
@@ -0,0 +1,33 @@
+# Copyright 2016 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.
+
+if (is_android) {
+ import("//build/config/android/rules.gni")
+}
+
+# GYP: //components/offline_pages/offline_pages.gypi:background_offliner
+static_library("background_offliner") {
+ sources = [
+ "offliner.h",
+ "offliner_factory.h",
+ "offliner_policy.h",
+ "prerenderer_offliner.cc",
+ "prerenderer_offliner.h",
+ "prerenderer_offliner_factory.cc",
+ "prerenderer_offliner_factory.h",
+ "request_coordinator.cc",
+ "request_coordinator.h",
+ "request_coordinator_factory.cc",
+ "request_coordinator_factory.h",
+ "scheduler.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/bookmarks/browser",
+ "//components/offline_pages:offline_pages",
+ "//net",
+ "//url",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698