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

Side by Side Diff: components/autocomplete.gypi

Issue 382663002: Add components and CLD to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: android 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/BUILD.gn ('k') | components/autocomplete/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 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 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/autocomplete
8 'target_name': 'autocomplete', 9 'target_name': 'autocomplete',
9 'type': 'static_library', 10 'type': 'static_library',
10 'dependencies': [ 11 'dependencies': [
11 '../base/base.gyp:base', 12 '../base/base.gyp:base',
12 '../net/net.gyp:net', 13 '../net/net.gyp:net',
13 '../url/url.gyp:url_lib', 14 '../url/url.gyp:url_lib',
14 'component_metrics_proto', 15 'component_metrics_proto',
15 'url_fixer', 16 'url_fixer',
16 ], 17 ],
17 'include_dirs': [ 18 'include_dirs': [
18 '..', 19 '..',
19 ], 20 ],
20 'sources': [ 21 'sources': [
22 # Note: sources list duplicated in GN build.
21 'autocomplete/autocomplete_input.cc', 23 'autocomplete/autocomplete_input.cc',
22 'autocomplete/autocomplete_input.h', 24 'autocomplete/autocomplete_input.h',
23 'autocomplete/autocomplete_match_type.cc', 25 'autocomplete/autocomplete_match_type.cc',
24 'autocomplete/autocomplete_match_type.h', 26 'autocomplete/autocomplete_match_type.h',
25 'autocomplete/autocomplete_scheme_classifier.h', 27 'autocomplete/autocomplete_scheme_classifier.h',
26 'autocomplete/url_prefix.cc', 28 'autocomplete/url_prefix.cc',
27 'autocomplete/url_prefix.h', 29 'autocomplete/url_prefix.h',
28 ], 30 ],
29 }, 31 },
30 { 32 {
33 # GN version: //components/autocomplete:test_support
31 'target_name': 'autocomplete_test_support', 34 'target_name': 'autocomplete_test_support',
32 'type': 'static_library', 35 'type': 'static_library',
33 'dependencies': [ 36 'dependencies': [
34 '../base/base.gyp:base', 37 '../base/base.gyp:base',
35 'autocomplete', 38 'autocomplete',
36 'component_metrics_proto', 39 'component_metrics_proto',
37 ], 40 ],
38 'include_dirs': [ 41 'include_dirs': [
39 '..', 42 '..',
40 ], 43 ],
41 'sources': [ 44 'sources': [
45 # Note: sources list duplicated in GN build.
42 'autocomplete/test_scheme_classifier.cc', 46 'autocomplete/test_scheme_classifier.cc',
43 'autocomplete/test_scheme_classifier.h', 47 'autocomplete/test_scheme_classifier.h',
44 ], 48 ],
45 }, 49 },
46 ], 50 ],
47 } 51 }
OLDNEW
« no previous file with comments | « components/BUILD.gn ('k') | components/autocomplete/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698