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

Side by Side Diff: components/ntp_snippets.gypi

Issue 2102023002: Add ContentSuggestionsService (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 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',
(...skipping 13 matching lines...) Expand all
24 'prefs/prefs.gyp:prefs', 24 'prefs/prefs.gyp:prefs',
25 'signin_core_browser', 25 'signin_core_browser',
26 'suggestions', 26 'suggestions',
27 'sync_driver', 27 'sync_driver',
28 'variations', 28 'variations',
29 ], 29 ],
30 'sources': [ 30 'sources': [
31 'ntp_snippets/content_suggestion_category.h', 31 'ntp_snippets/content_suggestion_category.h',
32 'ntp_snippets/content_suggestion.cc', 32 'ntp_snippets/content_suggestion.cc',
33 'ntp_snippets/content_suggestion.h', 33 'ntp_snippets/content_suggestion.h',
34 'ntp_snippets/content_suggestions_provider.h',
34 'ntp_snippets/content_suggestions_provider_type.h', 35 'ntp_snippets/content_suggestions_provider_type.h',
36 'ntp_snippets/content_suggestions_service.cc',
37 'ntp_snippets/content_suggestions_service.h',
35 'ntp_snippets/ntp_snippet.cc', 38 'ntp_snippets/ntp_snippet.cc',
36 'ntp_snippets/ntp_snippet.h', 39 'ntp_snippets/ntp_snippet.h',
37 'ntp_snippets/ntp_snippets_constants.cc', 40 'ntp_snippets/ntp_snippets_constants.cc',
38 'ntp_snippets/ntp_snippets_constants.h', 41 'ntp_snippets/ntp_snippets_constants.h',
39 'ntp_snippets/ntp_snippets_database.cc', 42 'ntp_snippets/ntp_snippets_database.cc',
40 'ntp_snippets/ntp_snippets_database.h', 43 'ntp_snippets/ntp_snippets_database.h',
41 'ntp_snippets/ntp_snippets_fetcher.cc', 44 'ntp_snippets/ntp_snippets_fetcher.cc',
42 'ntp_snippets/ntp_snippets_fetcher.h', 45 'ntp_snippets/ntp_snippets_fetcher.h',
43 'ntp_snippets/ntp_snippets_scheduler.h', 46 'ntp_snippets/ntp_snippets_scheduler.h',
44 'ntp_snippets/ntp_snippets_service.cc', 47 'ntp_snippets/ntp_snippets_service.cc',
45 'ntp_snippets/ntp_snippets_service.h', 48 'ntp_snippets/ntp_snippets_service.h',
46 'ntp_snippets/pref_names.cc', 49 'ntp_snippets/pref_names.cc',
47 'ntp_snippets/pref_names.h', 50 'ntp_snippets/pref_names.h',
48 'ntp_snippets/proto/ntp_snippets.proto', 51 'ntp_snippets/proto/ntp_snippets.proto',
49 'ntp_snippets/switches.cc', 52 'ntp_snippets/switches.cc',
50 'ntp_snippets/switches.h', 53 'ntp_snippets/switches.h',
51 ], 54 ],
52 'variables': { 55 'variables': {
53 'proto_in_dir': 'ntp_snippets/proto', 56 'proto_in_dir': 'ntp_snippets/proto',
54 'proto_out_dir': 'components/ntp_snippets/proto', 57 'proto_out_dir': 'components/ntp_snippets/proto',
55 }, 58 },
56 'includes': [ '../build/protoc.gypi' ], 59 'includes': [ '../build/protoc.gypi' ],
57 }, 60 },
58 ], 61 ],
59 } 62 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698