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 # 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", |
20 "//components/autofill/content/public/interfaces", | 21 "//components/autofill/content/public/interfaces", |
21 "//components/autofill/core/browser", | 22 "//components/autofill/core/browser", |
22 "//components/autofill/core/common", | 23 "//components/autofill/core/common", |
23 "//skia", | 24 "//skia", |
24 ] | 25 ] |
25 deps = [ | 26 deps = [ |
26 "//base", | 27 "//base", |
27 "//base:i18n", | 28 "//base:i18n", |
28 "//components/os_crypt", | 29 "//components/os_crypt", |
29 "//components/prefs", | 30 "//components/prefs", |
30 "//components/resources", | 31 "//components/resources", |
31 "//components/strings", | 32 "//components/strings", |
32 "//components/user_prefs", | 33 "//components/user_prefs", |
33 "//components/webdata/common", | 34 "//components/webdata/common", |
34 "//content/public/browser", | 35 "//content/public/browser", |
35 "//content/public/common", | 36 "//content/public/common", |
36 "//device/geolocation:device_geolocation", | 37 "//device/geolocation:device_geolocation", |
37 "//google_apis", | 38 "//google_apis", |
38 "//gpu/config", | 39 "//gpu/config", |
| 40 "//ipc", |
39 "//mojo/common:common_base", | 41 "//mojo/common:common_base", |
40 "//net", | 42 "//net", |
41 "//services/shell/public/cpp", | 43 "//services/shell/public/cpp", |
42 "//sql", | 44 "//sql", |
43 "//third_party/icu", | 45 "//third_party/icu", |
44 "//third_party/libphonenumber", | 46 "//third_party/libphonenumber", |
45 "//ui/base", | 47 "//ui/base", |
46 "//ui/display", | 48 "//ui/display", |
47 "//ui/gfx", | 49 "//ui/gfx", |
48 "//ui/gfx/geometry", | 50 "//ui/gfx/geometry", |
(...skipping 11 matching lines...) Expand all Loading... |
60 source_set("unit_tests") { | 62 source_set("unit_tests") { |
61 testonly = true | 63 testonly = true |
62 sources = [ | 64 sources = [ |
63 "content_autofill_driver_unittest.cc", | 65 "content_autofill_driver_unittest.cc", |
64 "payments/payments_client_unittest.cc", | 66 "payments/payments_client_unittest.cc", |
65 ] | 67 ] |
66 | 68 |
67 deps = [ | 69 deps = [ |
68 ":browser", | 70 ":browser", |
69 "//base", | 71 "//base", |
70 "//components/autofill/content/public/interfaces", | 72 "//components/autofill/content/common", |
71 "//components/autofill/core/browser", | 73 "//components/autofill/core/browser", |
72 "//components/autofill/core/browser:test_support", | 74 "//components/autofill/core/browser:test_support", |
73 "//components/autofill/core/common", | 75 "//components/autofill/core/common", |
74 "//content/public/browser", | 76 "//content/public/browser", |
75 "//content/public/common", | 77 "//content/public/common", |
76 "//content/test:test_support", | 78 "//content/test:test_support", |
77 "//google_apis", | 79 "//google_apis", |
78 "//google_apis:test_support", | 80 "//google_apis:test_support", |
| 81 "//ipc:test_support", |
79 "//mojo/common:common_base", | 82 "//mojo/common:common_base", |
80 "//net", | 83 "//net", |
81 "//net:test_support", | 84 "//net:test_support", |
82 "//services/shell/public/cpp", | 85 "//services/shell/public/cpp", |
83 "//testing/gmock", | 86 "//testing/gmock", |
84 "//testing/gtest", | 87 "//testing/gtest", |
85 ] | 88 ] |
86 } | 89 } |
OLD | NEW |