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

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

Issue 1914333002: Adding a BUILD file for both gyp and gn for the new background_offlining (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More CR feedback per fgorski. 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
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/background/request_coordinator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..6f9c3ff553e87082d3a266a8cb80c9856ce329bb
--- /dev/null
+++ b/components/offline_pages/background/BUILD.gn
@@ -0,0 +1,24 @@
+# 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",
+ "request_coordinator.cc",
+ "request_coordinator.h",
+ "scheduler.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/offline_pages:offline_pages",
+ "//net",
+ "//url",
+ ]
+}
« no previous file with comments | « components/offline_pages.gypi ('k') | components/offline_pages/background/request_coordinator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698