| 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 325 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 336 "//components/os_crypt", | 336 "//components/os_crypt", |
| 337 "//components/os_crypt:test_support", | 337 "//components/os_crypt:test_support", |
| 338 "//components/prefs:test_support", | 338 "//components/prefs:test_support", |
| 339 "//components/rappor:test_support", | 339 "//components/rappor:test_support", |
| 340 "//components/resources", | 340 "//components/resources", |
| 341 "//components/signin/core/browser", | 341 "//components/signin/core/browser", |
| 342 "//components/signin/core/browser:test_support", | 342 "//components/signin/core/browser:test_support", |
| 343 "//components/signin/core/common", | 343 "//components/signin/core/common", |
| 344 "//components/strings", | 344 "//components/strings", |
| 345 "//components/sync", | 345 "//components/sync", |
| 346 "//components/sync:test_support_sync_api", | |
| 347 "//components/sync:test_support_sync_driver", | 346 "//components/sync:test_support_sync_driver", |
| 347 "//components/sync:test_support_sync_model", |
| 348 "//components/variations", | 348 "//components/variations", |
| 349 "//components/webdata/common", | 349 "//components/webdata/common", |
| 350 "//components/webdata_services:test_support", | 350 "//components/webdata_services:test_support", |
| 351 "//google_apis", | 351 "//google_apis", |
| 352 "//google_apis:test_support", | 352 "//google_apis:test_support", |
| 353 "//net:test_support", | 353 "//net:test_support", |
| 354 "//sql", | 354 "//sql", |
| 355 "//testing/gmock", | 355 "//testing/gmock", |
| 356 "//testing/gtest", | 356 "//testing/gtest", |
| 357 "//third_party/libaddressinput:util", | 357 "//third_party/libaddressinput:util", |
| 358 "//third_party/libphonenumber", | 358 "//third_party/libphonenumber", |
| 359 "//ui/base", | 359 "//ui/base", |
| 360 "//url", | 360 "//url", |
| 361 ] | 361 ] |
| 362 } | 362 } |
| OLD | NEW |