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

Side by Side Diff: components/omnibox.gypi

Issue 2203993002: Add a Physical Web omnibox autocomplete provider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: data source changes Created 4 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
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/browser 8 # GN version: //components/omnibox/browser
9 'target_name': 'omnibox_browser', 9 'target_name': 'omnibox_browser',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 12 matching lines...) Expand all
23 'metrics', 23 'metrics',
24 'component_metrics_proto', 24 'component_metrics_proto',
25 'components_resources.gyp:components_resources', 25 'components_resources.gyp:components_resources',
26 'components_strings.gyp:components_strings', 26 'components_strings.gyp:components_strings',
27 'data_use_measurement_core', 27 'data_use_measurement_core',
28 'history_core_browser', 28 'history_core_browser',
29 'keyed_service_core', 29 'keyed_service_core',
30 'omnibox_common', 30 'omnibox_common',
31 'omnibox_in_memory_url_index_cache_proto', 31 'omnibox_in_memory_url_index_cache_proto',
32 'open_from_clipboard', 32 'open_from_clipboard',
33 'physical_web_data_source',
33 'pref_registry', 34 'pref_registry',
34 'query_parser', 35 'query_parser',
35 'search', 36 'search',
36 'search_engines', 37 'search_engines',
37 'toolbar', 38 'toolbar',
38 'url_formatter/url_formatter.gyp:url_formatter', 39 'url_formatter/url_formatter.gyp:url_formatter',
39 'variations_net', 40 'variations_net',
40 ], 41 ],
41 'export_dependent_settings': [ 42 'export_dependent_settings': [
42 'component_metrics_proto', 43 'component_metrics_proto',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 'omnibox/browser/omnibox_popup_model.cc', 110 'omnibox/browser/omnibox_popup_model.cc',
110 'omnibox/browser/omnibox_popup_model.h', 111 'omnibox/browser/omnibox_popup_model.h',
111 'omnibox/browser/omnibox_popup_model_observer.h', 112 'omnibox/browser/omnibox_popup_model_observer.h',
112 'omnibox/browser/omnibox_popup_view.h', 113 'omnibox/browser/omnibox_popup_view.h',
113 'omnibox/browser/omnibox_pref_names.cc', 114 'omnibox/browser/omnibox_pref_names.cc',
114 'omnibox/browser/omnibox_pref_names.h', 115 'omnibox/browser/omnibox_pref_names.h',
115 'omnibox/browser/omnibox_switches.cc', 116 'omnibox/browser/omnibox_switches.cc',
116 'omnibox/browser/omnibox_switches.h', 117 'omnibox/browser/omnibox_switches.h',
117 'omnibox/browser/omnibox_view.cc', 118 'omnibox/browser/omnibox_view.cc',
118 'omnibox/browser/omnibox_view.h', 119 'omnibox/browser/omnibox_view.h',
120 'omnibox/browser/physical_web_provider.cc',
121 'omnibox/browser/physical_web_provider.h',
119 'omnibox/browser/scored_history_match.cc', 122 'omnibox/browser/scored_history_match.cc',
120 'omnibox/browser/scored_history_match.h', 123 'omnibox/browser/scored_history_match.h',
121 'omnibox/browser/search_provider.cc', 124 'omnibox/browser/search_provider.cc',
122 'omnibox/browser/search_provider.h', 125 'omnibox/browser/search_provider.h',
123 'omnibox/browser/search_suggestion_parser.cc', 126 'omnibox/browser/search_suggestion_parser.cc',
124 'omnibox/browser/search_suggestion_parser.h', 127 'omnibox/browser/search_suggestion_parser.h',
125 'omnibox/browser/shortcuts_backend.cc', 128 'omnibox/browser/shortcuts_backend.cc',
126 'omnibox/browser/shortcuts_backend.h', 129 'omnibox/browser/shortcuts_backend.h',
127 'omnibox/browser/shortcuts_constants.cc', 130 'omnibox/browser/shortcuts_constants.cc',
128 'omnibox/browser/shortcuts_constants.h', 131 'omnibox/browser/shortcuts_constants.h',
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
213 'type': 'none', 216 'type': 'none',
214 'variables': { 217 'variables': {
215 'source_file': 'omnibox/browser/autocomplete_match_type.h', 218 'source_file': 'omnibox/browser/autocomplete_match_type.h',
216 }, 219 },
217 'includes': [ '../build/android/java_cpp_enum.gypi' ], 220 'includes': [ '../build/android/java_cpp_enum.gypi' ],
218 }, 221 },
219 ], 222 ],
220 }], 223 }],
221 ], 224 ],
222 } 225 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698