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

Side by Side Diff: components/omnibox.gypi

Issue 469623004: Move KeywordProvider to components/omnibox (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move tests 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 | « components/components_tests.gyp ('k') | components/omnibox/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/omnibox 8 # GN version: //components/omnibox
9 'target_name': 'omnibox', 9 'target_name': 'omnibox',
10 'type': 'static_library', 10 'type': 'static_library',
11 'dependencies': [ 11 'dependencies': [
12 '../base/base.gyp:base', 12 '../base/base.gyp:base',
13 '../net/net.gyp:net', 13 '../net/net.gyp:net',
14 '../ui/base/ui_base.gyp:ui_base',
14 '../url/url.gyp:url_lib', 15 '../url/url.gyp:url_lib',
15 'search', 16 'search',
16 'search_engines', 17 'search_engines',
17 'variations', 18 'variations',
18 'component_metrics_proto', 19 'component_metrics_proto',
19 'components_resources.gyp:components_resources', 20 'components_resources.gyp:components_resources',
21 'components_strings.gyp:components_strings',
20 'url_fixer', 22 'url_fixer',
21 ], 23 ],
22 'include_dirs': [ 24 'include_dirs': [
23 '..', 25 '..',
24 ], 26 ],
25 'sources': [ 27 'sources': [
26 # Note: sources list duplicated in GN build. 28 # Note: sources list duplicated in GN build.
27 'omnibox/autocomplete_input.cc', 29 'omnibox/autocomplete_input.cc',
28 'omnibox/autocomplete_input.h', 30 'omnibox/autocomplete_input.h',
29 'omnibox/autocomplete_match.cc', 31 'omnibox/autocomplete_match.cc',
30 'omnibox/autocomplete_match.h', 32 'omnibox/autocomplete_match.h',
31 'omnibox/autocomplete_match_type.cc', 33 'omnibox/autocomplete_match_type.cc',
32 'omnibox/autocomplete_match_type.h', 34 'omnibox/autocomplete_match_type.h',
33 'omnibox/autocomplete_provider.cc', 35 'omnibox/autocomplete_provider.cc',
34 'omnibox/autocomplete_provider.h', 36 'omnibox/autocomplete_provider.h',
35 'omnibox/autocomplete_provider_listener.h', 37 'omnibox/autocomplete_provider_listener.h',
36 'omnibox/autocomplete_result.cc', 38 'omnibox/autocomplete_result.cc',
37 'omnibox/autocomplete_result.h', 39 'omnibox/autocomplete_result.h',
38 'omnibox/autocomplete_scheme_classifier.h', 40 'omnibox/autocomplete_scheme_classifier.h',
41 'omnibox/keyword_extensions_delegate.cc',
42 'omnibox/keyword_extensions_delegate.h',
43 'omnibox/keyword_provider.cc',
44 'omnibox/keyword_provider.h',
39 'omnibox/omnibox_field_trial.cc', 45 'omnibox/omnibox_field_trial.cc',
40 'omnibox/omnibox_field_trial.h', 46 'omnibox/omnibox_field_trial.h',
41 'omnibox/omnibox_switches.cc', 47 'omnibox/omnibox_switches.cc',
42 'omnibox/omnibox_switches.h', 48 'omnibox/omnibox_switches.h',
43 'omnibox/search_suggestion_parser.cc', 49 'omnibox/search_suggestion_parser.cc',
44 'omnibox/search_suggestion_parser.h', 50 'omnibox/search_suggestion_parser.h',
45 'omnibox/url_prefix.cc', 51 'omnibox/url_prefix.cc',
46 'omnibox/url_prefix.h', 52 'omnibox/url_prefix.h',
47 ], 53 ],
48 }, 54 },
(...skipping 10 matching lines...) Expand all
59 '..', 65 '..',
60 ], 66 ],
61 'sources': [ 67 'sources': [
62 # Note: sources list duplicated in GN build. 68 # Note: sources list duplicated in GN build.
63 'omnibox/test_scheme_classifier.cc', 69 'omnibox/test_scheme_classifier.cc',
64 'omnibox/test_scheme_classifier.h', 70 'omnibox/test_scheme_classifier.h',
65 ], 71 ],
66 }, 72 },
67 ], 73 ],
68 } 74 }
OLDNEW
« no previous file with comments | « components/components_tests.gyp ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698