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 # GYP version: components/autofill.gyp:autofill_core_browser | 5 # GYP version: components/autofill.gyp:autofill_core_browser |
6 static_library("browser") { | 6 static_library("browser") { |
7 sources = [ | 7 sources = [ |
8 "address.cc", | 8 "address.cc", |
9 "address.h", | 9 "address.h", |
10 "address_field.cc", | 10 "address_field.cc", |
(...skipping 201 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
212 "autofill_metrics_unittest.cc", | 212 "autofill_metrics_unittest.cc", |
213 "autofill_profile_unittest.cc", | 213 "autofill_profile_unittest.cc", |
214 "autofill_type_unittest.cc", | 214 "autofill_type_unittest.cc", |
215 "autofill_xml_parser_unittest.cc", | 215 "autofill_xml_parser_unittest.cc", |
216 "contact_info_unittest.cc", | 216 "contact_info_unittest.cc", |
217 "credit_card_field_unittest.cc", | 217 "credit_card_field_unittest.cc", |
218 "credit_card_unittest.cc", | 218 "credit_card_unittest.cc", |
219 "form_field_unittest.cc", | 219 "form_field_unittest.cc", |
220 "form_structure_unittest.cc", | 220 "form_structure_unittest.cc", |
221 "name_field_unittest.cc", | 221 "name_field_unittest.cc", |
| 222 "options_util_unittest.cc", |
222 "password_generator_unittest.cc", | 223 "password_generator_unittest.cc", |
223 "personal_data_manager_unittest.cc", | 224 "personal_data_manager_unittest.cc", |
224 "phone_field_unittest.cc", | 225 "phone_field_unittest.cc", |
225 "phone_number_i18n_unittest.cc", | 226 "phone_number_i18n_unittest.cc", |
226 "phone_number_unittest.cc", | 227 "phone_number_unittest.cc", |
227 "validation_unittest.cc", | 228 "validation_unittest.cc", |
228 "webdata/autofill_profile_syncable_service_unittest.cc", | 229 "webdata/autofill_profile_syncable_service_unittest.cc", |
229 "webdata/autofill_table_unittest.cc", | 230 "webdata/autofill_table_unittest.cc", |
230 "webdata/web_data_service_unittest.cc", | 231 "webdata/web_data_service_unittest.cc", |
231 ] | 232 ] |
232 | 233 |
233 deps = [ | 234 deps = [ |
234 ":browser", | 235 ":browser", |
235 ":test_support", | 236 ":test_support", |
236 "//base", | 237 "//base", |
237 "//base:prefs", | 238 "//base:prefs", |
238 "//base/test:test_support", | 239 "//base/test:test_support", |
239 "//components/autofill/core/common", | 240 "//components/autofill/core/common", |
240 "//components/os_crypt", | 241 "//components/os_crypt", |
241 "//components/rappor:test_support", | 242 "//components/rappor:test_support", |
242 "//components/resources", | 243 "//components/resources", |
243 "//components/signin/core/browser:test_support", | 244 "//components/signin/core/browser:test_support", |
244 "//components/strings", | 245 "//components/strings", |
| 246 "//components/sync_driver", |
245 "//components/webdata/common", | 247 "//components/webdata/common", |
246 "//net:test_support", | 248 "//net:test_support", |
247 "//sql", | 249 "//sql", |
248 "//sync", | 250 "//sync", |
249 "//sync:test_support_sync_api", | 251 "//sync:test_support_sync_api", |
250 "//testing/gmock", | 252 "//testing/gmock", |
251 "//testing/gtest", | 253 "//testing/gtest", |
252 "//third_party/libphonenumber", | 254 "//third_party/libphonenumber", |
253 "//third_party/libjingle", | 255 "//third_party/libjingle", |
254 "//ui/base", | 256 "//ui/base", |
255 "//url", | 257 "//url", |
256 ] | 258 ] |
257 } | 259 } |
OLD | NEW |