| 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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 "password_manager_unittest.cc", | 259 "password_manager_unittest.cc", |
| 260 "password_manager_util_unittest.cc", | 260 "password_manager_util_unittest.cc", |
| 261 "password_store_default_unittest.cc", | 261 "password_store_default_unittest.cc", |
| 262 "password_store_origin_unittest.h", | 262 "password_store_origin_unittest.h", |
| 263 "password_store_unittest.cc", | 263 "password_store_unittest.cc", |
| 264 "password_syncable_service_unittest.cc", | 264 "password_syncable_service_unittest.cc", |
| 265 "password_ui_utils_unittest.cc", | 265 "password_ui_utils_unittest.cc", |
| 266 "psl_matching_helper_unittest.cc", | 266 "psl_matching_helper_unittest.cc", |
| 267 "statistics_table_unittest.cc", | 267 "statistics_table_unittest.cc", |
| 268 ] | 268 ] |
| 269 if (is_mac) { |
| 270 sources -= [ "password_store_default_unittest.cc" ] |
| 271 } |
| 269 deps = [ | 272 deps = [ |
| 270 ":test_support", | 273 ":test_support", |
| 271 ":unit_tests_bundle_data", | 274 ":unit_tests_bundle_data", |
| 272 "//base/test:test_support", | 275 "//base/test:test_support", |
| 273 "//components/autofill/core/browser:test_support", | 276 "//components/autofill/core/browser:test_support", |
| 274 "//components/autofill/core/browser/proto", | 277 "//components/autofill/core/browser/proto", |
| 275 "//components/autofill/core/common", | 278 "//components/autofill/core/common", |
| 276 "//components/os_crypt", | 279 "//components/os_crypt", |
| 277 "//components/password_manager/core/browser:proto", | 280 "//components/password_manager/core/browser:proto", |
| 278 "//components/password_manager/core/common", | 281 "//components/password_manager/core/common", |
| 279 "//components/prefs:test_support", | 282 "//components/prefs:test_support", |
| 280 "//components/strings", | 283 "//components/strings", |
| 281 "//components/sync_driver:test_support", | 284 "//components/sync_driver:test_support", |
| 282 "//components/variations", | 285 "//components/variations", |
| 283 "//net:test_support", | 286 "//net:test_support", |
| 284 "//sql:test_support", | 287 "//sql:test_support", |
| 285 "//sync:test_support_sync_api", | 288 "//sync:test_support_sync_api", |
| 286 "//testing/gmock", | 289 "//testing/gmock", |
| 287 "//testing/gtest", | 290 "//testing/gtest", |
| 288 "//ui/base", | 291 "//ui/base", |
| 289 "//url", | 292 "//url", |
| 290 ] | 293 ] |
| 291 } | 294 } |
| OLD | NEW |