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

Side by Side Diff: components/omnibox.gypi

Issue 1182113009: Componentize HistoryQuickProvider and its supporting cast (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 6 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 | « chrome/test/base/testing_profile.cc ('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 '../base/base.gyp:base_i18n', 13 '../base/base.gyp:base_i18n',
14 '../net/net.gyp:net', 14 '../net/net.gyp:net',
15 '../sql/sql.gyp:sql', 15 '../sql/sql.gyp:sql',
16 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
16 '../ui/base/ui_base.gyp:ui_base', 17 '../ui/base/ui_base.gyp:ui_base',
17 '../url/url.gyp:url_lib', 18 '../url/url.gyp:url_lib',
18 'bookmarks_browser', 19 'bookmarks_browser',
19 'component_metrics_proto', 20 'component_metrics_proto',
20 'components_resources.gyp:components_resources', 21 'components_resources.gyp:components_resources',
21 'components_strings.gyp:components_strings', 22 'components_strings.gyp:components_strings',
22 'history_core_browser', 23 'history_core_browser',
24 'keyed_service_core',
25 'omnibox_in_memory_url_index_cache_proto',
23 'query_parser', 26 'query_parser',
24 'search', 27 'search',
25 'search_engines', 28 'search_engines',
26 'url_fixer', 29 'url_fixer',
27 'variations_http_provider', 30 'variations_http_provider',
28 ], 31 ],
29 'export_dependent_settings': [ 32 'export_dependent_settings': [
30 'component_metrics_proto', 33 'component_metrics_proto',
31 ], 34 ],
32 'include_dirs': [ 35 'include_dirs': [
(...skipping 15 matching lines...) Expand all
48 'omnibox/autocomplete_provider_listener.h', 51 'omnibox/autocomplete_provider_listener.h',
49 'omnibox/autocomplete_result.cc', 52 'omnibox/autocomplete_result.cc',
50 'omnibox/autocomplete_result.h', 53 'omnibox/autocomplete_result.h',
51 'omnibox/autocomplete_scheme_classifier.h', 54 'omnibox/autocomplete_scheme_classifier.h',
52 'omnibox/base_search_provider.cc', 55 'omnibox/base_search_provider.cc',
53 'omnibox/base_search_provider.h', 56 'omnibox/base_search_provider.h',
54 'omnibox/bookmark_provider.cc', 57 'omnibox/bookmark_provider.cc',
55 'omnibox/bookmark_provider.h', 58 'omnibox/bookmark_provider.h',
56 'omnibox/history_provider.cc', 59 'omnibox/history_provider.cc',
57 'omnibox/history_provider.h', 60 'omnibox/history_provider.h',
61 'omnibox/history_quick_provider.cc',
62 'omnibox/history_quick_provider.h',
58 'omnibox/history_url_provider.cc', 63 'omnibox/history_url_provider.cc',
59 'omnibox/history_url_provider.h', 64 'omnibox/history_url_provider.h',
65 'omnibox/in_memory_url_index.cc',
66 'omnibox/in_memory_url_index.h',
60 'omnibox/in_memory_url_index_types.cc', 67 'omnibox/in_memory_url_index_types.cc',
61 'omnibox/in_memory_url_index_types.h', 68 'omnibox/in_memory_url_index_types.h',
62 'omnibox/keyword_extensions_delegate.cc', 69 'omnibox/keyword_extensions_delegate.cc',
63 'omnibox/keyword_extensions_delegate.h', 70 'omnibox/keyword_extensions_delegate.h',
64 'omnibox/keyword_provider.cc', 71 'omnibox/keyword_provider.cc',
65 'omnibox/keyword_provider.h', 72 'omnibox/keyword_provider.h',
66 'omnibox/omnibox_field_trial.cc', 73 'omnibox/omnibox_field_trial.cc',
67 'omnibox/omnibox_field_trial.h', 74 'omnibox/omnibox_field_trial.h',
68 'omnibox/omnibox_log.cc', 75 'omnibox/omnibox_log.cc',
69 'omnibox/omnibox_log.h', 76 'omnibox/omnibox_log.h',
70 'omnibox/omnibox_switches.cc', 77 'omnibox/omnibox_switches.cc',
71 'omnibox/omnibox_switches.h', 78 'omnibox/omnibox_switches.h',
72 'omnibox/scored_history_match.cc', 79 'omnibox/scored_history_match.cc',
73 'omnibox/scored_history_match.h', 80 'omnibox/scored_history_match.h',
74 'omnibox/search_provider.cc', 81 'omnibox/search_provider.cc',
75 'omnibox/search_provider.h', 82 'omnibox/search_provider.h',
76 'omnibox/search_suggestion_parser.cc', 83 'omnibox/search_suggestion_parser.cc',
77 'omnibox/search_suggestion_parser.h', 84 'omnibox/search_suggestion_parser.h',
78 'omnibox/shortcuts_database.cc', 85 'omnibox/shortcuts_database.cc',
79 'omnibox/shortcuts_database.h', 86 'omnibox/shortcuts_database.h',
80 'omnibox/suggestion_answer.cc', 87 'omnibox/suggestion_answer.cc',
81 'omnibox/suggestion_answer.h', 88 'omnibox/suggestion_answer.h',
89 'omnibox/url_index_private_data.cc',
90 'omnibox/url_index_private_data.h',
82 'omnibox/url_prefix.cc', 91 'omnibox/url_prefix.cc',
83 'omnibox/url_prefix.h', 92 'omnibox/url_prefix.h',
84 ], 93 ],
85 }, 94 },
86 { 95 {
96 # Protobuf compiler / generator for the InMemoryURLIndex caching
97 # protocol buffer.
98 # GN version: //components/omnibox:in_memory_url_index_cache_proto
99 'target_name': 'omnibox_in_memory_url_index_cache_proto',
100 'type': 'static_library',
101 'sources': [ 'omnibox/in_memory_url_index_cache.proto', ],
102 'variables': {
103 'proto_in_dir': 'omnibox',
104 'proto_out_dir': 'components/omnibox',
105 },
106 'includes': [ '../build/protoc.gypi', ],
107 },
108 {
87 # GN version: //components/omnibox:test_support 109 # GN version: //components/omnibox:test_support
88 'target_name': 'omnibox_test_support', 110 'target_name': 'omnibox_test_support',
89 'type': 'static_library', 111 'type': 'static_library',
90 'dependencies': [ 112 'dependencies': [
91 '../base/base.gyp:base', 113 '../base/base.gyp:base',
92 'omnibox', 114 'omnibox',
93 'component_metrics_proto', 115 'component_metrics_proto',
94 ], 116 ],
95 'include_dirs': [ 117 'include_dirs': [
96 '..', 118 '..',
97 ], 119 ],
98 'sources': [ 120 'sources': [
99 # Note: sources list duplicated in GN build. 121 # Note: sources list duplicated in GN build.
100 'omnibox/test_scheme_classifier.cc', 122 'omnibox/test_scheme_classifier.cc',
101 'omnibox/test_scheme_classifier.h', 123 'omnibox/test_scheme_classifier.h',
102 ], 124 ],
103 }, 125 },
104 ], 126 ],
105 } 127 }
OLDNEW
« no previous file with comments | « chrome/test/base/testing_profile.cc ('k') | components/omnibox/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698