Remove implicit conversions from scoped_refptr to T* in net/socket/
[chromium-blink-merge.git] / components / omnibox.gypi
blobf7401b58533f7e2c65303bea554e47df5bf05aec
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
3 # found in the LICENSE file.
6   'targets': [
7     {
8       # GN version: //components/omnibox
9       'target_name': 'omnibox',
10       'type': 'static_library',
11       'dependencies': [
12         '../base/base.gyp:base',
13         '../net/net.gyp:net',
14         '../ui/base/ui_base.gyp:ui_base',
15         '../url/url.gyp:url_lib',
16         'search',
17         'search_engines',
18         'variations',
19         'component_metrics_proto',
20         'components_resources.gyp:components_resources',
21         'components_strings.gyp:components_strings',
22         'url_fixer',
23       ],
24       'include_dirs': [
25         '..',
26       ],
27       'sources': [
28         # Note: sources list duplicated in GN build.
29         'omnibox/autocomplete_input.cc',
30         'omnibox/autocomplete_input.h',
31         'omnibox/autocomplete_match.cc',
32         'omnibox/autocomplete_match.h',
33         'omnibox/autocomplete_match_type.cc',
34         'omnibox/autocomplete_match_type.h',
35         'omnibox/autocomplete_provider.cc',
36         'omnibox/autocomplete_provider.h',
37         'omnibox/autocomplete_provider_listener.h',
38         'omnibox/autocomplete_result.cc',
39         'omnibox/autocomplete_result.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',
45         'omnibox/omnibox_field_trial.cc',
46         'omnibox/omnibox_field_trial.h',
47         'omnibox/omnibox_switches.cc',
48         'omnibox/omnibox_switches.h',
49         'omnibox/search_suggestion_parser.cc',
50         'omnibox/search_suggestion_parser.h',
51         'omnibox/url_prefix.cc',
52         'omnibox/url_prefix.h',
53       ],
54     },
55     {
56       # GN version: //components/omnibox:test_support
57       'target_name': 'omnibox_test_support',
58       'type': 'static_library',
59       'dependencies': [
60         '../base/base.gyp:base',
61         'omnibox',
62         'component_metrics_proto',
63       ],
64       'include_dirs': [
65         '..',
66       ],
67       'sources': [
68         # Note: sources list duplicated in GN build.
69         'omnibox/test_scheme_classifier.cc',
70         'omnibox/test_scheme_classifier.h',
71       ],
72     },
73   ],