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

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

Issue 2149453004: Implement first version of OfflinePageSuggestionsProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/ntp_snippets/offline_pages/BUILD.gn
diff --git a/components/ntp_snippets/offline_pages/BUILD.gn b/components/ntp_snippets/offline_pages/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..f4afbd617e588b9ba93216493efc249252f79811
--- /dev/null
+++ b/components/ntp_snippets/offline_pages/BUILD.gn
@@ -0,0 +1,37 @@
+# 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/config.gni")
+ import("//build/config/android/rules.gni")
Marc Treib 2016/07/14 12:16:53 Required?
Philipp Keck 2016/07/14 13:46:02 Done.
Marc Treib 2016/07/14 14:17:23 Hm, the config one should probably stay. Let's see
Philipp Keck 2016/07/14 15:30:06 Acknowledged.
+}
+
+# GYP: //components/ntp_snippets.gypi:offline_page_suggestions
+static_library("offline_page_suggestions") {
Marc Treib 2016/07/14 12:16:53 nit: Should this have the same name as the folder?
Philipp Keck 2016/07/14 13:46:02 It would then be confused more easily with the com
Marc Treib 2016/07/14 14:17:23 Acknowledged.
+ sources = [
+ "offline_page_suggestions_provider.cc",
+ "offline_page_suggestions_provider.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/keyed_service/core",
+ "//components/ntp_snippets:ntp_snippets",
+ "//components/offline_pages:offline_pages",
Marc Treib 2016/07/14 12:16:53 nit: I think the ":offline_pages" etc isn't requir
Philipp Keck 2016/07/14 13:46:02 Done.
Marc Treib 2016/07/14 14:17:23 No, not done actually. There's a few places here w
Philipp Keck 2016/07/14 15:30:06 Done. ...
+ ]
+}
+
+source_set("unit_tests") {
+ testonly = true
+ sources = []
+
+ deps = [
+ ":offline_page_suggestions",
+ "//base",
+ "//base/test:test_support",
+ "//components/ntp_snippets:ntp_snippets",
+ "//components/offline_pages:offline_pages",
+ "//testing/gtest",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698