| 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', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 'omnibox/keyword_provider.cc', | 48 'omnibox/keyword_provider.cc', |
| 49 'omnibox/keyword_provider.h', | 49 'omnibox/keyword_provider.h', |
| 50 'omnibox/omnibox_field_trial.cc', | 50 'omnibox/omnibox_field_trial.cc', |
| 51 'omnibox/omnibox_field_trial.h', | 51 'omnibox/omnibox_field_trial.h', |
| 52 'omnibox/omnibox_switches.cc', | 52 'omnibox/omnibox_switches.cc', |
| 53 'omnibox/omnibox_switches.h', | 53 'omnibox/omnibox_switches.h', |
| 54 'omnibox/search_provider.cc', | 54 'omnibox/search_provider.cc', |
| 55 'omnibox/search_provider.h', | 55 'omnibox/search_provider.h', |
| 56 'omnibox/search_suggestion_parser.cc', | 56 'omnibox/search_suggestion_parser.cc', |
| 57 'omnibox/search_suggestion_parser.h', | 57 'omnibox/search_suggestion_parser.h', |
| 58 'omnibox/suggestion_answer.cc', |
| 59 'omnibox/suggestion_answer.h', |
| 58 'omnibox/url_prefix.cc', | 60 'omnibox/url_prefix.cc', |
| 59 'omnibox/url_prefix.h', | 61 'omnibox/url_prefix.h', |
| 60 ], | 62 ], |
| 61 }, | 63 }, |
| 62 { | 64 { |
| 63 # GN version: //components/omnibox:test_support | 65 # GN version: //components/omnibox:test_support |
| 64 'target_name': 'omnibox_test_support', | 66 'target_name': 'omnibox_test_support', |
| 65 'type': 'static_library', | 67 'type': 'static_library', |
| 66 'dependencies': [ | 68 'dependencies': [ |
| 67 '../base/base.gyp:base', | 69 '../base/base.gyp:base', |
| 68 'omnibox', | 70 'omnibox', |
| 69 'component_metrics_proto', | 71 'component_metrics_proto', |
| 70 ], | 72 ], |
| 71 'include_dirs': [ | 73 'include_dirs': [ |
| 72 '..', | 74 '..', |
| 73 ], | 75 ], |
| 74 'sources': [ | 76 'sources': [ |
| 75 # Note: sources list duplicated in GN build. | 77 # Note: sources list duplicated in GN build. |
| 76 'omnibox/test_scheme_classifier.cc', | 78 'omnibox/test_scheme_classifier.cc', |
| 77 'omnibox/test_scheme_classifier.h', | 79 'omnibox/test_scheme_classifier.h', |
| 78 ], | 80 ], |
| 79 }, | 81 }, |
| 80 ], | 82 ], |
| 81 } | 83 } |
| OLD | NEW |