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 "request_autocomplete_manager.cc", | 14 "request_autocomplete_manager.cc", |
15 "request_autocomplete_manager.h", | 15 "request_autocomplete_manager.h", |
16 "risk/fingerprint.cc", | 16 "risk/fingerprint.cc", |
17 "risk/fingerprint.h", | 17 "risk/fingerprint.h", |
18 "wallet/full_wallet.cc", | 18 "wallet/full_wallet.cc", |
19 "wallet/full_wallet.h", | 19 "wallet/full_wallet.h", |
20 "wallet/wallet_address.cc", | 20 "wallet/wallet_address.cc", |
21 "wallet/wallet_address.h", | 21 "wallet/wallet_address.h", |
22 "wallet/wallet_service_url.cc", | 22 "wallet/wallet_service_url.cc", |
23 "wallet/wallet_service_url.h", | 23 "wallet/wallet_service_url.h", |
24 ] | 24 ] |
25 | 25 |
26 configs += [ "//components/autofill/core/browser:wallet_service" ] | 26 configs += [ "//components/autofill/core/browser:wallet_service" ] |
27 | 27 |
28 public_deps = [ | 28 public_deps = [ |
| 29 ":risk_proto", |
29 "//skia", | 30 "//skia", |
30 ] | 31 ] |
31 deps = [ | 32 deps = [ |
32 ":risk_proto", | |
33 "//base", | 33 "//base", |
34 "//base:i18n", | 34 "//base:i18n", |
35 "//base:prefs", | 35 "//base:prefs", |
36 "//components/autofill/content/common", | 36 "//components/autofill/content/common", |
37 "//components/autofill/core/browser", | 37 "//components/autofill/core/browser", |
38 "//components/autofill/core/common", | 38 "//components/autofill/core/common", |
39 "//components/os_crypt", | 39 "//components/os_crypt", |
40 "//components/resources", | 40 "//components/resources", |
41 "//components/strings", | 41 "//components/strings", |
42 "//components/user_prefs", | 42 "//components/user_prefs", |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 "//content/test:test_support", | 88 "//content/test:test_support", |
89 "//google_apis", | 89 "//google_apis", |
90 "//google_apis:test_support", | 90 "//google_apis:test_support", |
91 "//ipc:test_support", | 91 "//ipc:test_support", |
92 "//net", | 92 "//net", |
93 "//net:test_support", | 93 "//net:test_support", |
94 "//testing/gmock", | 94 "//testing/gmock", |
95 "//testing/gtest", | 95 "//testing/gtest", |
96 ] | 96 ] |
97 } | 97 } |
OLD | NEW |