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

Unified Diff: components/ntp_snippets.gypi

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.gypi
diff --git a/components/ntp_snippets.gypi b/components/ntp_snippets.gypi
index 817968fc89d449528e9c68e45f32637476ae0af5..6558c3364886916837c88576557b74a71e262f4c 100644
--- a/components/ntp_snippets.gypi
+++ b/components/ntp_snippets.gypi
@@ -62,5 +62,24 @@
},
'includes': [ '../build/protoc.gypi' ],
},
+ {
+ # GN: //components/ntp_snippets/offline_pages:offline_page_suggestions
+ 'target_name': 'ntp_snippets_offline_page_suggestions',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..',
+ '../..',
Marc Treib 2016/07/14 12:16:53 Is this required?
Philipp Keck 2016/07/14 13:46:02 I don't know. It's inspired by this: https://codes
Marc Treib 2016/07/14 16:13:16 I'm pretty sure gyp is still supported everywhere,
Bernhard Bauer 2016/07/14 18:47:43 On Android there aren't any bits that still build
Philipp Keck 2016/07/15 09:08:41 I'm not an expert on GYP build files. The reason w
Philipp Keck 2016/07/15 09:08:41 Acknowledged.
Bernhard Bauer 2016/07/18 11:09:32 Yup. offline_pages_background_offliner is kind of
Philipp Keck 2016/07/18 12:55:03 Done.
+ ],
+ 'dependencies': [
+ '../base/base.gyp:base',
+ 'keyed_service_core',
+ 'ntp_snippets',
+ 'offline_pages',
+ ],
+ 'sources': [
+ 'ntp_snippets/offline_pages/offline_page_suggestions_provider.cc',
+ 'ntp_snippets/offline_pages/offline_page_suggestions_provider.h',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698