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

Side by Side Diff: components/ntp_snippets.gypi

Issue 1677073002: Fetch snippets from ChromeReader and show them on the NTP (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaning up Created 4 years, 10 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 unified diff | Download patch
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/ntp_snippets 8 # GN version: //components/ntp_snippets
9 'target_name': 'ntp_snippets', 9 'target_name': 'ntp_snippets',
10 'type': 'static_library', 10 'type': 'static_library',
11 'include_dirs': [ 11 'include_dirs': [
12 '..', 12 '..',
13 ], 13 ],
14 'dependencies': [ 14 'dependencies': [
15 '../base/base.gyp:base', 15 '../base/base.gyp:base',
16 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
17 'keyed_service_core', 17 'keyed_service_core',
18 ], 18 ],
19 'sources': [ 19 'sources': [
20 'ntp_snippets/inner_iterator.h', 20 'ntp_snippets/inner_iterator.h',
21 'ntp_snippets/ntp_snippet.cc', 21 'ntp_snippets/ntp_snippet.cc',
22 'ntp_snippets/ntp_snippet.h', 22 'ntp_snippets/ntp_snippet.h',
23 'ntp_snippets/ntp_snippets_fetcher.cc',
24 'ntp_snippets/ntp_snippets_fetcher.h',
23 'ntp_snippets/ntp_snippets_service.cc', 25 'ntp_snippets/ntp_snippets_service.cc',
24 'ntp_snippets/ntp_snippets_service.h', 26 'ntp_snippets/ntp_snippets_service.h',
25 ], 27 ],
26 }, 28 },
27 ], 29 ],
28 } 30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698