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

Side by Side Diff: components/ntp_snippets.gypi

Issue 2187233002: Add ContentSuggestionsCategoryFactory; Store categories as ints (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Marc's new comments Created 4 years, 4 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 14 matching lines...) Expand all
25 'prefs/prefs.gyp:prefs', 25 'prefs/prefs.gyp:prefs',
26 'signin_core_browser', 26 'signin_core_browser',
27 'suggestions', 27 'suggestions',
28 'sync_driver', 28 'sync_driver',
29 'variations', 29 'variations',
30 'variations_net', 30 'variations_net',
31 ], 31 ],
32 'sources': [ 32 'sources': [
33 'ntp_snippets/content_suggestion.cc', 33 'ntp_snippets/content_suggestion.cc',
34 'ntp_snippets/content_suggestion.h', 34 'ntp_snippets/content_suggestion.h',
35 'ntp_snippets/content_suggestions_category_factory.cc',
36 'ntp_snippets/content_suggestions_category_factory.h',
35 'ntp_snippets/content_suggestions_category_status.cc', 37 'ntp_snippets/content_suggestions_category_status.cc',
36 'ntp_snippets/content_suggestions_category_status.h', 38 'ntp_snippets/content_suggestions_category_status.h',
39 'ntp_snippets/content_suggestions_category.cc',
37 'ntp_snippets/content_suggestions_category.h', 40 'ntp_snippets/content_suggestions_category.h',
38 'ntp_snippets/content_suggestions_provider.cc', 41 'ntp_snippets/content_suggestions_provider.cc',
39 'ntp_snippets/content_suggestions_provider.h', 42 'ntp_snippets/content_suggestions_provider.h',
40 'ntp_snippets/content_suggestions_service.cc', 43 'ntp_snippets/content_suggestions_service.cc',
41 'ntp_snippets/content_suggestions_service.h', 44 'ntp_snippets/content_suggestions_service.h',
42 'ntp_snippets/ntp_snippet.cc', 45 'ntp_snippets/ntp_snippet.cc',
43 'ntp_snippets/ntp_snippet.h', 46 'ntp_snippets/ntp_snippet.h',
44 'ntp_snippets/ntp_snippets_constants.cc', 47 'ntp_snippets/ntp_snippets_constants.cc',
45 'ntp_snippets/ntp_snippets_constants.h', 48 'ntp_snippets/ntp_snippets_constants.h',
46 'ntp_snippets/ntp_snippets_database.cc', 49 'ntp_snippets/ntp_snippets_database.cc',
(...skipping 16 matching lines...) Expand all
63 'ntp_snippets/switches.h', 66 'ntp_snippets/switches.h',
64 ], 67 ],
65 'variables': { 68 'variables': {
66 'proto_in_dir': 'ntp_snippets/proto', 69 'proto_in_dir': 'ntp_snippets/proto',
67 'proto_out_dir': 'components/ntp_snippets/proto', 70 'proto_out_dir': 'components/ntp_snippets/proto',
68 }, 71 },
69 'includes': [ '../build/protoc.gypi' ], 72 'includes': [ '../build/protoc.gypi' ],
70 }, 73 },
71 ], 74 ],
72 } 75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698