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 '../ui/base/ui_base.gyp:ui_base', | 14 '../ui/base/ui_base.gyp:ui_base', |
15 '../url/url.gyp:url_lib', | 15 '../url/url.gyp:url_lib', |
16 'search', | |
17 'search_engines', | |
18 'variations', | |
19 'component_metrics_proto', | 16 'component_metrics_proto', |
20 'components_resources.gyp:components_resources', | 17 'components_resources.gyp:components_resources', |
21 'components_strings.gyp:components_strings', | 18 'components_strings.gyp:components_strings', |
19 'search', | |
20 'search_engines', | |
22 'url_fixer', | 21 'url_fixer', |
22 'variations_http_provider', | |
hashimoto
2014/08/27 11:24:25
This dependency fix will be fixed in https://coder
| |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 '..', | 25 '..', |
26 ], | 26 ], |
27 'sources': [ | 27 'sources': [ |
28 # Note: sources list duplicated in GN build. | 28 # Note: sources list duplicated in GN build. |
29 'omnibox/answers_cache.h', | 29 'omnibox/answers_cache.h', |
30 'omnibox/answers_cache.cc', | 30 'omnibox/answers_cache.cc', |
31 'omnibox/autocomplete_input.cc', | 31 'omnibox/autocomplete_input.cc', |
32 'omnibox/autocomplete_input.h', | 32 'omnibox/autocomplete_input.h', |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
72 '..', | 72 '..', |
73 ], | 73 ], |
74 'sources': [ | 74 'sources': [ |
75 # Note: sources list duplicated in GN build. | 75 # Note: sources list duplicated in GN build. |
76 'omnibox/test_scheme_classifier.cc', | 76 'omnibox/test_scheme_classifier.cc', |
77 'omnibox/test_scheme_classifier.h', | 77 'omnibox/test_scheme_classifier.h', |
78 ], | 78 ], |
79 }, | 79 }, |
80 ], | 80 ], |
81 } | 81 } |
OLD | NEW |