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

Side by Side Diff: components/autofill/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 import("//third_party/protobuf/proto_library.gni") 5 import("//third_party/protobuf/proto_library.gni")
6 6
7 # GYP version: components/autofill.gypi:autofill_content_browser 7 # GYP version: components/autofill.gypi:autofill_content_browser
8 static_library("browser") { 8 static_library("browser") {
9 sources = [ 9 sources = [
10 "content_autofill_driver.cc", 10 "content_autofill_driver.cc",
11 "content_autofill_driver.h", 11 "content_autofill_driver.h",
12 "content_autofill_driver_factory.cc", 12 "content_autofill_driver_factory.cc",
13 "content_autofill_driver_factory.h", 13 "content_autofill_driver_factory.h",
14 "risk/fingerprint.cc", 14 "risk/fingerprint.cc",
15 "risk/fingerprint.h", 15 "risk/fingerprint.h",
16 ] 16 ]
17 17
18 public_deps = [ 18 public_deps = [
19 ":risk_proto", 19 ":risk_proto",
20 "//components/autofill/content/common",
21 "//components/autofill/content/public/interfaces", 20 "//components/autofill/content/public/interfaces",
22 "//components/autofill/core/browser", 21 "//components/autofill/core/browser",
23 "//components/autofill/core/common", 22 "//components/autofill/core/common",
24 "//skia", 23 "//skia",
25 ] 24 ]
26 deps = [ 25 deps = [
27 "//base", 26 "//base",
28 "//base:i18n", 27 "//base:i18n",
29 "//components/os_crypt", 28 "//components/os_crypt",
30 "//components/prefs", 29 "//components/prefs",
31 "//components/resources", 30 "//components/resources",
32 "//components/strings", 31 "//components/strings",
33 "//components/user_prefs", 32 "//components/user_prefs",
34 "//components/webdata/common", 33 "//components/webdata/common",
35 "//content/public/browser", 34 "//content/public/browser",
36 "//content/public/common", 35 "//content/public/common",
37 "//device/geolocation:device_geolocation", 36 "//device/geolocation:device_geolocation",
38 "//google_apis", 37 "//google_apis",
39 "//gpu/config", 38 "//gpu/config",
40 "//ipc",
41 "//mojo/common:common_base", 39 "//mojo/common:common_base",
42 "//net", 40 "//net",
43 "//services/shell/public/cpp", 41 "//services/shell/public/cpp",
44 "//sql", 42 "//sql",
45 "//third_party/icu", 43 "//third_party/icu",
46 "//third_party/libphonenumber", 44 "//third_party/libphonenumber",
47 "//ui/base", 45 "//ui/base",
48 "//ui/display", 46 "//ui/display",
49 "//ui/gfx", 47 "//ui/gfx",
50 "//ui/gfx/geometry", 48 "//ui/gfx/geometry",
(...skipping 11 matching lines...) Expand all
62 source_set("unit_tests") { 60 source_set("unit_tests") {
63 testonly = true 61 testonly = true
64 sources = [ 62 sources = [
65 "content_autofill_driver_unittest.cc", 63 "content_autofill_driver_unittest.cc",
66 "payments/payments_client_unittest.cc", 64 "payments/payments_client_unittest.cc",
67 ] 65 ]
68 66
69 deps = [ 67 deps = [
70 ":browser", 68 ":browser",
71 "//base", 69 "//base",
72 "//components/autofill/content/common", 70 "//components/autofill/content/public/interfaces",
73 "//components/autofill/core/browser", 71 "//components/autofill/core/browser",
74 "//components/autofill/core/browser:test_support", 72 "//components/autofill/core/browser:test_support",
75 "//components/autofill/core/common", 73 "//components/autofill/core/common",
76 "//content/public/browser", 74 "//content/public/browser",
77 "//content/public/common", 75 "//content/public/common",
78 "//content/test:test_support", 76 "//content/test:test_support",
79 "//google_apis", 77 "//google_apis",
80 "//google_apis:test_support", 78 "//google_apis:test_support",
81 "//ipc:test_support",
82 "//mojo/common:common_base", 79 "//mojo/common:common_base",
83 "//net", 80 "//net",
84 "//net:test_support", 81 "//net:test_support",
85 "//services/shell/public/cpp", 82 "//services/shell/public/cpp",
86 "//testing/gmock", 83 "//testing/gmock",
87 "//testing/gtest", 84 "//testing/gtest",
88 ] 85 ]
89 } 86 }
OLDNEW
« no previous file with comments | « components/autofill/content/DEPS ('k') | components/autofill/content/browser/content_autofill_driver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698