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/browser | 8 # GN version: //components/omnibox/browser |
9 'target_name': 'omnibox_browser', | 9 'target_name': 'omnibox_browser', |
10 'type': 'static_library', | 10 'type': 'static_library', |
(...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
176 'omnibox_browser', | 176 'omnibox_browser', |
177 'component_metrics_proto', | 177 'component_metrics_proto', |
178 ], | 178 ], |
179 'include_dirs': [ | 179 'include_dirs': [ |
180 '..', | 180 '..', |
181 ], | 181 ], |
182 'sources': [ | 182 'sources': [ |
183 # Note: sources list duplicated in GN build. | 183 # Note: sources list duplicated in GN build. |
184 'omnibox/browser/history_index_restore_observer.cc', | 184 'omnibox/browser/history_index_restore_observer.cc', |
185 'omnibox/browser/history_index_restore_observer.h', | 185 'omnibox/browser/history_index_restore_observer.h', |
| 186 'omnibox/browser/in_memory_url_index_test_util.cc', |
| 187 'omnibox/browser/in_memory_url_index_test_util.h', |
186 'omnibox/browser/mock_autocomplete_provider_client.cc', | 188 'omnibox/browser/mock_autocomplete_provider_client.cc', |
187 'omnibox/browser/mock_autocomplete_provider_client.h', | 189 'omnibox/browser/mock_autocomplete_provider_client.h', |
188 'omnibox/browser/test_scheme_classifier.cc', | 190 'omnibox/browser/test_scheme_classifier.cc', |
189 'omnibox/browser/test_scheme_classifier.h', | 191 'omnibox/browser/test_scheme_classifier.h', |
190 ], | 192 ], |
191 }, | 193 }, |
192 ], | 194 ], |
193 'conditions': [ | 195 'conditions': [ |
194 ['OS == "android"', { | 196 ['OS == "android"', { |
195 'targets': [ | 197 'targets': [ |
196 { | 198 { |
197 # GN: //components/omnibox:autocomplete_match_type_javagen | 199 # GN: //components/omnibox:autocomplete_match_type_javagen |
198 'target_name': 'autocomplete_match_type_java', | 200 'target_name': 'autocomplete_match_type_java', |
199 'type': 'none', | 201 'type': 'none', |
200 'variables': { | 202 'variables': { |
201 'source_file': 'omnibox/browser/autocomplete_match_type.h', | 203 'source_file': 'omnibox/browser/autocomplete_match_type.h', |
202 }, | 204 }, |
203 'includes': [ '../build/android/java_cpp_enum.gypi' ], | 205 'includes': [ '../build/android/java_cpp_enum.gypi' ], |
204 }, | 206 }, |
205 ], | 207 ], |
206 }], | 208 }], |
207 ], | 209 ], |
208 } | 210 } |
OLD | NEW |