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