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

Side by Side Diff: components/suggestions.gypi

Issue 410673002: [Suggestions] Moving suggestions code to a new component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps Created 6 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 | Annotate | Revision Log
« no previous file with comments | « components/components_tests.gyp ('k') | components/suggestions/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
(Empty)
1 # Copyright (c) 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 {
6 'targets': [
7 {
8 # GN version: //components/suggestions
9 'target_name': 'suggestions',
10 'type': 'static_library',
11 'include_dirs': [
12 '..',
13 ],
14 'dependencies': [
15 '../base/base.gyp:base',
16 '../net/net.gyp:net',
17 '../ui/gfx/gfx.gyp:gfx',
18 '../url/url.gyp:url_lib',
19 'components.gyp:keyed_service_core',
20 'components.gyp:pref_registry',
21 'components.gyp:variations',
22 ],
23 'sources': [
24 'suggestions/blacklist_store.cc',
25 'suggestions/blacklist_store.h',
26 'suggestions/image_manager.h',
27 'suggestions/proto/suggestions.proto',
28 'suggestions/suggestions_pref_names.cc',
29 'suggestions/suggestions_pref_names.h',
30 'suggestions/suggestions_service.cc',
31 'suggestions/suggestions_service.h',
32 'suggestions/suggestions_store.cc',
33 'suggestions/suggestions_store.h',
34 ],
35 'variables': {
36 'proto_in_dir': 'suggestions/proto',
37 'proto_out_dir': 'components/suggestions/proto',
38 },
39 'includes': [ '../build/protoc.gypi' ],
40 },
41 ],
42 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/suggestions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698