| 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 static_library("test_support") { | 218 static_library("test_support") { |
| 219 testonly = true | 219 testonly = true |
| 220 sources = [ | 220 sources = [ |
| 221 "autofill_test_utils.cc", | 221 "autofill_test_utils.cc", |
| 222 "autofill_test_utils.h", | 222 "autofill_test_utils.h", |
| 223 "data_driven_test.cc", | 223 "data_driven_test.cc", |
| 224 "data_driven_test.h", | 224 "data_driven_test.h", |
| 225 "suggestion_test_helpers.h", | 225 "suggestion_test_helpers.h", |
| 226 "test_autofill_client.cc", | 226 "test_autofill_client.cc", |
| 227 "test_autofill_client.h", | 227 "test_autofill_client.h", |
| 228 "test_autofill_clock.cc", |
| 229 "test_autofill_clock.h", |
| 228 "test_autofill_driver.cc", | 230 "test_autofill_driver.cc", |
| 229 "test_autofill_driver.h", | 231 "test_autofill_driver.h", |
| 230 "test_autofill_external_delegate.cc", | 232 "test_autofill_external_delegate.cc", |
| 231 "test_autofill_external_delegate.h", | 233 "test_autofill_external_delegate.h", |
| 232 "test_personal_data_manager.cc", | 234 "test_personal_data_manager.cc", |
| 233 "test_personal_data_manager.h", | 235 "test_personal_data_manager.h", |
| 234 ] | 236 ] |
| 235 | 237 |
| 236 public_deps = [ | 238 public_deps = [ |
| 237 ":browser", | 239 ":browser", |
| (...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 "//net:test_support", | 363 "//net:test_support", |
| 362 "//sql", | 364 "//sql", |
| 363 "//testing/gmock", | 365 "//testing/gmock", |
| 364 "//testing/gtest", | 366 "//testing/gtest", |
| 365 "//third_party/libaddressinput:util", | 367 "//third_party/libaddressinput:util", |
| 366 "//third_party/libphonenumber", | 368 "//third_party/libphonenumber", |
| 367 "//ui/base", | 369 "//ui/base", |
| 368 "//url", | 370 "//url", |
| 369 ] | 371 ] |
| 370 } | 372 } |
| OLD | NEW |