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

Side by Side Diff: components/ntp_snippets.gypi

Issue 2059203002: Add ContentSuggestion, ContentSuggestionCategory and ContentSuggestionProviderType (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed includes 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
« no previous file with comments | « no previous file | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 10 matching lines...) Expand all
21 'image_fetcher', 21 'image_fetcher',
22 'keyed_service_core', 22 'keyed_service_core',
23 'leveldb_proto', 23 'leveldb_proto',
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',
32 'ntp_snippets/content_suggestion.cc',
33 'ntp_snippets/content_suggestion.h',
34 'ntp_snippets/content_suggestions_provider_type.h',
31 'ntp_snippets/ntp_snippet.cc', 35 'ntp_snippets/ntp_snippet.cc',
32 'ntp_snippets/ntp_snippet.h', 36 'ntp_snippets/ntp_snippet.h',
33 'ntp_snippets/ntp_snippets_constants.cc', 37 'ntp_snippets/ntp_snippets_constants.cc',
34 'ntp_snippets/ntp_snippets_constants.h', 38 'ntp_snippets/ntp_snippets_constants.h',
35 'ntp_snippets/ntp_snippets_database.cc', 39 'ntp_snippets/ntp_snippets_database.cc',
36 'ntp_snippets/ntp_snippets_database.h', 40 'ntp_snippets/ntp_snippets_database.h',
37 'ntp_snippets/ntp_snippets_fetcher.cc', 41 'ntp_snippets/ntp_snippets_fetcher.cc',
38 'ntp_snippets/ntp_snippets_fetcher.h', 42 'ntp_snippets/ntp_snippets_fetcher.h',
39 'ntp_snippets/ntp_snippets_scheduler.h', 43 'ntp_snippets/ntp_snippets_scheduler.h',
40 'ntp_snippets/ntp_snippets_service.cc', 44 'ntp_snippets/ntp_snippets_service.cc',
41 'ntp_snippets/ntp_snippets_service.h', 45 'ntp_snippets/ntp_snippets_service.h',
42 'ntp_snippets/pref_names.cc', 46 'ntp_snippets/pref_names.cc',
43 'ntp_snippets/pref_names.h', 47 'ntp_snippets/pref_names.h',
44 'ntp_snippets/proto/ntp_snippets.proto', 48 'ntp_snippets/proto/ntp_snippets.proto',
45 'ntp_snippets/switches.cc', 49 'ntp_snippets/switches.cc',
46 'ntp_snippets/switches.h', 50 'ntp_snippets/switches.h',
47 ], 51 ],
48 'variables': { 52 'variables': {
49 'proto_in_dir': 'ntp_snippets/proto', 53 'proto_in_dir': 'ntp_snippets/proto',
50 'proto_out_dir': 'components/ntp_snippets/proto', 54 'proto_out_dir': 'components/ntp_snippets/proto',
51 }, 55 },
52 'includes': [ '../build/protoc.gypi' ], 56 'includes': [ '../build/protoc.gypi' ],
53 }, 57 },
54 ], 58 ],
55 } 59 }
OLDNEW
« no previous file with comments | « no previous file | components/ntp_snippets/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698