| 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 | 6 |
| 7 static_library("browser") { | 7 static_library("browser") { |
| 8 sources = [ | 8 sources = [ |
| 9 "address.cc", | 9 "address.cc", |
| 10 "address.h", | 10 "address.h", |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 318 "phone_field_unittest.cc", | 318 "phone_field_unittest.cc", |
| 319 "phone_number_i18n_unittest.cc", | 319 "phone_number_i18n_unittest.cc", |
| 320 "phone_number_unittest.cc", | 320 "phone_number_unittest.cc", |
| 321 "ui/card_unmask_prompt_controller_impl_unittest.cc", | 321 "ui/card_unmask_prompt_controller_impl_unittest.cc", |
| 322 "validation_unittest.cc", | 322 "validation_unittest.cc", |
| 323 "webdata/autocomplete_sync_bridge_unittest.cc", | 323 "webdata/autocomplete_sync_bridge_unittest.cc", |
| 324 "webdata/autofill_data_type_controller_unittest.cc", | 324 "webdata/autofill_data_type_controller_unittest.cc", |
| 325 "webdata/autofill_profile_syncable_service_unittest.cc", | 325 "webdata/autofill_profile_syncable_service_unittest.cc", |
| 326 "webdata/autofill_table_unittest.cc", | 326 "webdata/autofill_table_unittest.cc", |
| 327 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", | 327 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", |
| 328 "webdata/autofill_wallet_syncable_service_unittest.cc", |
| 328 "webdata/web_data_service_unittest.cc", | 329 "webdata/web_data_service_unittest.cc", |
| 329 ] | 330 ] |
| 330 | 331 |
| 331 if (is_ios || is_android) { | 332 if (is_ios || is_android) { |
| 332 sources += [ "autofill_assistant_unittest.cc" ] | 333 sources += [ "autofill_assistant_unittest.cc" ] |
| 333 } | 334 } |
| 334 | 335 |
| 335 deps = [ | 336 deps = [ |
| 336 ":browser", | 337 ":browser", |
| 337 ":test_support", | 338 ":test_support", |
| (...skipping 22 matching lines...) Expand all Loading... |
| 360 "//net:test_support", | 361 "//net:test_support", |
| 361 "//sql", | 362 "//sql", |
| 362 "//testing/gmock", | 363 "//testing/gmock", |
| 363 "//testing/gtest", | 364 "//testing/gtest", |
| 364 "//third_party/libaddressinput:util", | 365 "//third_party/libaddressinput:util", |
| 365 "//third_party/libphonenumber", | 366 "//third_party/libphonenumber", |
| 366 "//ui/base", | 367 "//ui/base", |
| 367 "//url", | 368 "//url", |
| 368 ] | 369 ] |
| 369 } | 370 } |
| OLD | NEW |