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

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

Issue 2755113002: Create ReadingListSuggestionsProvider (Closed)
Patch Set: 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
Index: components/ntp_snippets/ios/BUILD.gn
diff --git a/components/ntp_snippets/ios/BUILD.gn b/components/ntp_snippets/ios/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..3728d592d68e24aae21e42daed9337c26507c8e0
--- /dev/null
+++ b/components/ntp_snippets/ios/BUILD.gn
@@ -0,0 +1,16 @@
+# Copyright 2017 The Chromium Authors. All rights reserved.
Marc Treib 2017/03/17 14:44:00 I thought we agreed on components/ntp_snippets/rea
gambard 2017/03/20 08:32:39 The components/reading_list(/ios) target is not bu
Marc Treib 2017/03/20 09:55:26 Hm, so far we've build everything everywhere, incl
jkrcal 2017/03/20 11:50:00 Building stuff on desktop allows us to run unit-te
gambard 2017/03/23 15:45:52 The ReadingListProvider is built for iOS only in c
Olivier 2017/03/24 09:57:03 I realize that this discussion is already settled,
Marc Treib 2017/03/27 08:19:22 We're working with Android, where resources tend t
Olivier 2017/03/27 15:29:24 I checked binary size on iOS, and removing the dep
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+source_set("ios") {
+ sources = [
+ "reading_list_suggestions_provider.cc",
+ "reading_list_suggestions_provider.h",
+ ]
+ deps = [
+ "//base",
+ "//components/ntp_snippets",
+ "//components/reading_list/ios",
+ "//components/strings",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698