| 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 source_set("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "bad_message.cc", | 7 "bad_message.cc", |
| 8 "bad_message.h", | 8 "bad_message.h", |
| 9 "content_password_manager_driver.cc", | 9 "content_password_manager_driver.cc", |
| 10 "content_password_manager_driver.h", | 10 "content_password_manager_driver.h", |
| 11 "content_password_manager_driver_factory.cc", | 11 "content_password_manager_driver_factory.cc", |
| 12 "content_password_manager_driver_factory.h", | 12 "content_password_manager_driver_factory.h", |
| 13 "credential_manager_impl.cc", | 13 "credential_manager_impl.cc", |
| 14 "credential_manager_impl.h", | 14 "credential_manager_impl.h", |
| 15 "password_manager_internals_service_factory.cc", | 15 "password_manager_internals_service_factory.cc", |
| (...skipping 27 matching lines...) Expand all Loading... |
| 43 deps = [ | 43 deps = [ |
| 44 ":browser", | 44 ":browser", |
| 45 "//components/autofill/core/browser:test_support", | 45 "//components/autofill/core/browser:test_support", |
| 46 "//components/password_manager/core/browser:test_support", | 46 "//components/password_manager/core/browser:test_support", |
| 47 "//components/prefs:test_support", | 47 "//components/prefs:test_support", |
| 48 "//content/test:test_support", | 48 "//content/test:test_support", |
| 49 "//testing/gmock", | 49 "//testing/gmock", |
| 50 "//testing/gtest", | 50 "//testing/gtest", |
| 51 ] | 51 ] |
| 52 } | 52 } |
| OLD | NEW |