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

Unified Diff: components/offline_pages/content/background_loader/BUILD.gn

Issue 2481443002: Implementation (cc file) for background loader contents. (Closed)
Patch Set: rebase Created 4 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 side-by-side diff with in-line comments
Download patch
Index: components/offline_pages/content/background_loader/BUILD.gn
diff --git a/components/offline_pages/content/background_loader/BUILD.gn b/components/offline_pages/content/background_loader/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..9e6aaeda9d37ba255c97a8ee690d4433daa34788
--- /dev/null
+++ b/components/offline_pages/content/background_loader/BUILD.gn
@@ -0,0 +1,32 @@
+# 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")
+}
+
+source_set("background_loader") {
+ sources = [
+ "background_loader_contents.cc",
+ "background_loader_contents.h",
+ ]
+
+ deps = [
+ "//content/public/browser",
+ "//url",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = [
+ "background_loader_contents_unittest.cc",
+ ]
+ deps = [
+ ":background_loader",
+ "//base",
+ "//content/test:test_support",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « components/BUILD.gn ('k') | components/offline_pages/content/background_loader/background_loader_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698