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

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: Compile fixes following 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
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 '../ui/base/ui_base.gyp:ui_base', 15 '../ui/base/ui_base.gyp:ui_base',
16 '../url/url.gyp:url_lib', 16 '../url/url.gyp:url_lib',
17 'component_metrics_proto', 17 'component_metrics_proto',
18 'components_resources.gyp:components_resources', 18 'components_resources.gyp:components_resources',
19 'components_strings.gyp:components_strings', 19 'components_strings.gyp:components_strings',
20 'history_core_browser', 20 'history_core_browser',
21 'search', 21 'search',
22 'search_engines', 22 'search_engines',
23 'url_fixer', 23 'url_fixer',
24 'url_formatter',
24 'variations_http_provider', 25 'variations_http_provider',
25 ], 26 ],
26 'export_dependent_settings': [ 27 'export_dependent_settings': [
27 'component_metrics_proto', 28 'component_metrics_proto',
28 ], 29 ],
29 'include_dirs': [ 30 'include_dirs': [
30 '..', 31 '..',
31 ], 32 ],
32 'sources': [ 33 'sources': [
33 # Note: sources list duplicated in GN build. 34 # Note: sources list duplicated in GN build.
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
79 '..', 80 '..',
80 ], 81 ],
81 'sources': [ 82 'sources': [
82 # Note: sources list duplicated in GN build. 83 # Note: sources list duplicated in GN build.
83 'omnibox/test_scheme_classifier.cc', 84 'omnibox/test_scheme_classifier.cc',
84 'omnibox/test_scheme_classifier.h', 85 'omnibox/test_scheme_classifier.h',
85 ], 86 ],
86 }, 87 },
87 ], 88 ],
88 } 89 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698