| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'proto_out_dir': 'components/omnibox', | 111 'proto_out_dir': 'components/omnibox', |
| 112 }, | 112 }, |
| 113 'includes': [ '../build/protoc.gypi', ], | 113 'includes': [ '../build/protoc.gypi', ], |
| 114 }, | 114 }, |
| 115 { | 115 { |
| 116 # GN version: //components/omnibox:test_support | 116 # GN version: //components/omnibox:test_support |
| 117 'target_name': 'omnibox_test_support', | 117 'target_name': 'omnibox_test_support', |
| 118 'type': 'static_library', | 118 'type': 'static_library', |
| 119 'dependencies': [ | 119 'dependencies': [ |
| 120 '../base/base.gyp:base', | 120 '../base/base.gyp:base', |
| 121 '../testing/gmock.gyp:gmock', |
| 121 'omnibox', | 122 'omnibox', |
| 122 'component_metrics_proto', | 123 'component_metrics_proto', |
| 123 ], | 124 ], |
| 124 'include_dirs': [ | 125 'include_dirs': [ |
| 125 '..', | 126 '..', |
| 126 ], | 127 ], |
| 127 'sources': [ | 128 'sources': [ |
| 128 # Note: sources list duplicated in GN build. | 129 # Note: sources list duplicated in GN build. |
| 130 'omnibox/mock_autocomplete_provider_client.cc', |
| 131 'omnibox/mock_autocomplete_provider_client.h', |
| 129 'omnibox/test_scheme_classifier.cc', | 132 'omnibox/test_scheme_classifier.cc', |
| 130 'omnibox/test_scheme_classifier.h', | 133 'omnibox/test_scheme_classifier.h', |
| 131 ], | 134 ], |
| 132 }, | 135 }, |
| 133 ], | 136 ], |
| 134 } | 137 } |
| OLD | NEW |