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

Side by Side Diff: components/omnibox.gypi

Issue 1171333003: Move net::FormatUrl and friends outside of //net and into //components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fold in secure_display to url_formatter Created 5 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',
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 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
17 '../ui/base/ui_base.gyp:ui_base', 17 '../ui/base/ui_base.gyp:ui_base',
18 '../url/url.gyp:url_lib', 18 '../url/url.gyp:url_lib',
19 'bookmarks_browser', 19 'bookmarks_browser',
20 'component_metrics_proto', 20 'component_metrics_proto',
21 'components_resources.gyp:components_resources', 21 'components_resources.gyp:components_resources',
22 'components_strings.gyp:components_strings', 22 'components_strings.gyp:components_strings',
23 'history_core_browser', 23 'history_core_browser',
24 'keyed_service_core', 24 'keyed_service_core',
25 'omnibox_in_memory_url_index_cache_proto', 25 'omnibox_in_memory_url_index_cache_proto',
26 'pref_registry', 26 'pref_registry',
27 'query_parser', 27 'query_parser',
28 'search', 28 'search',
29 'search_engines', 29 'search_engines',
30 'url_fixer', 30 'url_formatter',
31 'variations_http_provider', 31 'variations_http_provider',
32 ], 32 ],
33 'export_dependent_settings': [ 33 'export_dependent_settings': [
34 'component_metrics_proto', 34 'component_metrics_proto',
35 'history_core_browser', 35 'history_core_browser',
36 ], 36 ],
37 'include_dirs': [ 37 'include_dirs': [
38 '..', 38 '..',
39 ], 39 ],
40 'sources': [ 40 'sources': [
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
152 'sources': [ 152 'sources': [
153 # Note: sources list duplicated in GN build. 153 # Note: sources list duplicated in GN build.
154 'omnibox/browser/mock_autocomplete_provider_client.cc', 154 'omnibox/browser/mock_autocomplete_provider_client.cc',
155 'omnibox/browser/mock_autocomplete_provider_client.h', 155 'omnibox/browser/mock_autocomplete_provider_client.h',
156 'omnibox/browser/test_scheme_classifier.cc', 156 'omnibox/browser/test_scheme_classifier.cc',
157 'omnibox/browser/test_scheme_classifier.h', 157 'omnibox/browser/test_scheme_classifier.h',
158 ], 158 ],
159 }, 159 },
160 ], 160 ],
161 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698