OLD | NEW |
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 '../net/net.gyp:net', | 13 '../net/net.gyp:net', |
14 '../url/url.gyp:url_lib', | 14 '../url/url.gyp:url_lib', |
| 15 'search', |
15 'search_engines', | 16 'search_engines', |
| 17 'variations', |
16 'component_metrics_proto', | 18 'component_metrics_proto', |
17 'components_resources.gyp:components_resources', | 19 'components_resources.gyp:components_resources', |
18 'url_fixer', | 20 'url_fixer', |
19 ], | 21 ], |
20 'include_dirs': [ | 22 'include_dirs': [ |
21 '..', | 23 '..', |
22 ], | 24 ], |
23 'sources': [ | 25 'sources': [ |
24 # Note: sources list duplicated in GN build. | 26 # Note: sources list duplicated in GN build. |
25 'omnibox/autocomplete_input.cc', | 27 'omnibox/autocomplete_input.cc', |
26 'omnibox/autocomplete_input.h', | 28 'omnibox/autocomplete_input.h', |
27 'omnibox/autocomplete_match.cc', | 29 'omnibox/autocomplete_match.cc', |
28 'omnibox/autocomplete_match.h', | 30 'omnibox/autocomplete_match.h', |
29 'omnibox/autocomplete_match_type.cc', | 31 'omnibox/autocomplete_match_type.cc', |
30 'omnibox/autocomplete_match_type.h', | 32 'omnibox/autocomplete_match_type.h', |
31 'omnibox/autocomplete_provider.cc', | 33 'omnibox/autocomplete_provider.cc', |
32 'omnibox/autocomplete_provider.h', | 34 'omnibox/autocomplete_provider.h', |
33 'omnibox/autocomplete_provider_listener.h', | 35 'omnibox/autocomplete_provider_listener.h', |
34 'omnibox/autocomplete_scheme_classifier.h', | 36 'omnibox/autocomplete_scheme_classifier.h', |
| 37 'omnibox/omnibox_field_trial.cc', |
| 38 'omnibox/omnibox_field_trial.h', |
| 39 'omnibox/omnibox_switches.cc', |
| 40 'omnibox/omnibox_switches.h', |
35 'omnibox/search_suggestion_parser.cc', | 41 'omnibox/search_suggestion_parser.cc', |
36 'omnibox/search_suggestion_parser.h', | 42 'omnibox/search_suggestion_parser.h', |
37 'omnibox/url_prefix.cc', | 43 'omnibox/url_prefix.cc', |
38 'omnibox/url_prefix.h', | 44 'omnibox/url_prefix.h', |
39 ], | 45 ], |
40 }, | 46 }, |
41 { | 47 { |
42 # GN version: //components/omnibox:test_support | 48 # GN version: //components/omnibox:test_support |
43 'target_name': 'omnibox_test_support', | 49 'target_name': 'omnibox_test_support', |
44 'type': 'static_library', | 50 'type': 'static_library', |
45 'dependencies': [ | 51 'dependencies': [ |
46 '../base/base.gyp:base', | 52 '../base/base.gyp:base', |
47 'omnibox', | 53 'omnibox', |
48 'component_metrics_proto', | 54 'component_metrics_proto', |
49 ], | 55 ], |
50 'include_dirs': [ | 56 'include_dirs': [ |
51 '..', | 57 '..', |
52 ], | 58 ], |
53 'sources': [ | 59 'sources': [ |
54 # Note: sources list duplicated in GN build. | 60 # Note: sources list duplicated in GN build. |
55 'omnibox/test_scheme_classifier.cc', | 61 'omnibox/test_scheme_classifier.cc', |
56 'omnibox/test_scheme_classifier.h', | 62 'omnibox/test_scheme_classifier.h', |
57 ], | 63 ], |
58 }, | 64 }, |
59 ], | 65 ], |
60 } | 66 } |
OLD | NEW |