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

Side by Side Diff: components/autocomplete.gypi

Issue 437793002: Componentize AutocompleteProviderListener (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/autocomplete/autocomplete_provider_listener.h » ('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 # GN version: //components/autocomplete
9 'target_name': 'autocomplete', 9 'target_name': 'autocomplete',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 12 matching lines...) Expand all
23 'sources': [ 23 'sources': [
24 # Note: sources list duplicated in GN build. 24 # Note: sources list duplicated in GN build.
25 'autocomplete/autocomplete_input.cc', 25 'autocomplete/autocomplete_input.cc',
26 'autocomplete/autocomplete_input.h', 26 'autocomplete/autocomplete_input.h',
27 'autocomplete/autocomplete_match.cc', 27 'autocomplete/autocomplete_match.cc',
28 'autocomplete/autocomplete_match.h', 28 'autocomplete/autocomplete_match.h',
29 'autocomplete/autocomplete_match_type.cc', 29 'autocomplete/autocomplete_match_type.cc',
30 'autocomplete/autocomplete_match_type.h', 30 'autocomplete/autocomplete_match_type.h',
31 'autocomplete/autocomplete_provider.cc', 31 'autocomplete/autocomplete_provider.cc',
32 'autocomplete/autocomplete_provider.h', 32 'autocomplete/autocomplete_provider.h',
33 'autocomplete/autocomplete_provider_listener.h',
33 'autocomplete/autocomplete_scheme_classifier.h', 34 'autocomplete/autocomplete_scheme_classifier.h',
34 'autocomplete/search_suggestion_parser.cc', 35 'autocomplete/search_suggestion_parser.cc',
35 'autocomplete/search_suggestion_parser.h', 36 'autocomplete/search_suggestion_parser.h',
36 'autocomplete/url_prefix.cc', 37 'autocomplete/url_prefix.cc',
37 'autocomplete/url_prefix.h', 38 'autocomplete/url_prefix.h',
38 ], 39 ],
39 }, 40 },
40 { 41 {
41 # GN version: //components/autocomplete:test_support 42 # GN version: //components/autocomplete:test_support
42 'target_name': 'autocomplete_test_support', 43 'target_name': 'autocomplete_test_support',
43 'type': 'static_library', 44 'type': 'static_library',
44 'dependencies': [ 45 'dependencies': [
45 '../base/base.gyp:base', 46 '../base/base.gyp:base',
46 'autocomplete', 47 'autocomplete',
47 'component_metrics_proto', 48 'component_metrics_proto',
48 ], 49 ],
49 'include_dirs': [ 50 'include_dirs': [
50 '..', 51 '..',
51 ], 52 ],
52 'sources': [ 53 'sources': [
53 # Note: sources list duplicated in GN build. 54 # Note: sources list duplicated in GN build.
54 'autocomplete/test_scheme_classifier.cc', 55 'autocomplete/test_scheme_classifier.cc',
55 'autocomplete/test_scheme_classifier.h', 56 'autocomplete/test_scheme_classifier.h',
56 ], 57 ],
57 }, 58 },
58 ], 59 ],
59 } 60 }
OLDNEW
« no previous file with comments | « chrome/chrome_browser.gypi ('k') | components/autocomplete/autocomplete_provider_listener.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698