| 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 static_library("browser") { | 5 static_library("browser") { |
| 6 sources = [ | 6 sources = [ |
| 7 "content_credential_manager_dispatcher.cc", | 7 "content_credential_manager_dispatcher.cc", |
| 8 "content_credential_manager_dispatcher.h", | 8 "content_credential_manager_dispatcher.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", |
| 12 "content_password_manager_driver_factory.h", |
| 11 "credential_manager_password_form_manager.cc", | 13 "credential_manager_password_form_manager.cc", |
| 12 "credential_manager_password_form_manager.h", | 14 "credential_manager_password_form_manager.h", |
| 13 "password_manager_internals_service_factory.cc", | 15 "password_manager_internals_service_factory.cc", |
| 14 "password_manager_internals_service_factory.h", | 16 "password_manager_internals_service_factory.h", |
| 15 ] | 17 ] |
| 16 | 18 |
| 17 deps = [ | 19 deps = [ |
| 18 "//base", | 20 "//base", |
| 19 "//components/autofill/content/browser", | 21 "//components/autofill/content/browser", |
| 20 "//components/autofill/content/common", | 22 "//components/autofill/content/common", |
| 21 "//components/autofill/core/common", | 23 "//components/autofill/core/common", |
| 22 "//components/keyed_service/content", | 24 "//components/keyed_service/content", |
| 23 "//components/password_manager/core/browser", | 25 "//components/password_manager/core/browser", |
| 24 "//content/public/browser", | 26 "//content/public/browser", |
| 25 "//content/public/common", | 27 "//content/public/common", |
| 26 "//ipc", | 28 "//ipc", |
| 27 "//net", | 29 "//net", |
| 28 ] | 30 ] |
| 29 } | 31 } |
| OLD | NEW |