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

Unified Diff: components/offline_items_collection/core/BUILD.gn

Issue 2690333002: Initial checkin of OfflineContentProvider. (Closed)
Patch Set: Removed forwarding build file and targets for now Created 3 years, 9 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_items_collection/OWNERS ('k') | components/offline_items_collection/core/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/offline_items_collection/core/BUILD.gn
diff --git a/components/offline_items_collection/core/BUILD.gn b/components/offline_items_collection/core/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..1a76124f90eb9b269ce9c8f7b6df4e808a37f755
--- /dev/null
+++ b/components/offline_items_collection/core/BUILD.gn
@@ -0,0 +1,37 @@
+# Copyright 2017 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.
+
+static_library("core") {
+ sources = [
+ "offline_content_aggregator.cc",
+ "offline_content_aggregator.h",
+ "offline_content_provider.h",
+ "offline_item.cc",
+ "offline_item.h",
+
+ # TODO(dtrainor): Generate the Java version of these enums when the Android
+ # bridge is built.
+ "offline_item_filter.h",
+ "offline_item_state.h",
+ ]
+
+ deps = [
+ "//base",
+ "//url",
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+
+ sources = [
+ "offline_content_aggregator_unittest.cc",
+ ]
+
+ deps = [
+ ":core",
+ "//base/test:test_support",
+ "//components/offline_items_collection/core/test_support",
+ ]
+}
« no previous file with comments | « components/offline_items_collection/OWNERS ('k') | components/offline_items_collection/core/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698