Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(431)

Side by Side Diff: components/password_manager/content/browser/BUILD.gn

Issue 2216463002: [Autofill] Migrate ContentPasswordManagerDriver<-->Password{Autofill,Generation}Agent IPCs to mojo. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nit from Vaclav Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 "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",
16 "password_manager_internals_service_factory.h", 16 "password_manager_internals_service_factory.h",
17 ] 17 ]
18 18
19 public_deps = [ 19 public_deps = [
20 "//base", 20 "//base",
21 "//components/autofill/content/browser", 21 "//components/autofill/content/browser",
22 "//components/autofill/content/common",
23 "//components/autofill/content/public/interfaces", 22 "//components/autofill/content/public/interfaces",
24 "//components/autofill/core/common", 23 "//components/autofill/core/common",
25 "//components/keyed_service/content", 24 "//components/keyed_service/content",
26 "//components/password_manager/content/public/interfaces", 25 "//components/password_manager/content/public/interfaces",
27 "//components/password_manager/core/browser", 26 "//components/password_manager/core/browser",
28 "//components/password_manager/core/common", 27 "//components/password_manager/core/common",
29 "//components/prefs", 28 "//components/prefs",
30 "//content/public/browser", 29 "//content/public/browser",
31 "//content/public/common", 30 "//content/public/common",
32 "//ipc",
33 "//mojo/common:common_base", 31 "//mojo/common:common_base",
34 "//net", 32 "//net",
35 ] 33 ]
36 } 34 }
37 35
38 source_set("unit_tests") { 36 source_set("unit_tests") {
39 testonly = true 37 testonly = true
40 sources = [ 38 sources = [
41 "content_password_manager_driver_unittest.cc", 39 "content_password_manager_driver_unittest.cc",
42 "credential_manager_impl_unittest.cc", 40 "credential_manager_impl_unittest.cc",
43 ] 41 ]
44 deps = [ 42 deps = [
45 ":browser", 43 ":browser",
46 "//components/autofill/core/browser:test_support", 44 "//components/autofill/core/browser:test_support",
47 "//components/password_manager/core/browser:test_support", 45 "//components/password_manager/core/browser:test_support",
48 "//components/prefs:test_support", 46 "//components/prefs:test_support",
49 "//content/test:test_support", 47 "//content/test:test_support",
50 "//testing/gmock", 48 "//testing/gmock",
51 "//testing/gtest", 49 "//testing/gtest",
52 ] 50 ]
53 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698