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

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: Marc's, Justin's and Bernhard's comments 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
« no previous file with comments | « components/ntp_snippets/ntp_snippets_service.cc ('k') | components/ntp_snippets/offline_pages/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..d84cffdb8c72415cb235e2b1b3c6c6309bfd5ab9
--- /dev/null
+++ b/components/ntp_snippets/offline_pages/BUILD.gn
@@ -0,0 +1,18 @@
+# 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.
+
+# GYP: //components/ntp_snippets.gypi:offline_page_suggestions
+source_set("offline_page_suggestions") {
Bernhard Bauer 2016/07/18 11:09:33 Analogously to the GYP part, we could probably mer
Philipp Keck 2016/07/18 12:55:03 Done.
+ sources = [
+ "offline_page_suggestions_provider.cc",
+ "offline_page_suggestions_provider.h",
+ ]
+
+ deps = [
+ "//base",
+ "//components/keyed_service/core",
+ "//components/ntp_snippets",
+ "//components/offline_pages",
+ ]
+}
« no previous file with comments | « components/ntp_snippets/ntp_snippets_service.cc ('k') | components/ntp_snippets/offline_pages/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698