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
3 # found in the LICENSE file.
5 import("//third_party/protobuf/proto_library.gni")
7 # GYP version: components/autofill.gypi:autofill_content_browser
8 static_library("browser") {
10 "content_autofill_driver.cc",
11 "content_autofill_driver.h",
12 "content_autofill_driver_factory.cc",
13 "content_autofill_driver_factory.h",
14 "request_autocomplete_manager.cc",
15 "request_autocomplete_manager.h",
16 "risk/fingerprint.cc",
18 "wallet/form_field_error.cc",
19 "wallet/form_field_error.h",
20 "wallet/full_wallet.cc",
21 "wallet/full_wallet.h",
22 "wallet/gaia_account.cc",
23 "wallet/gaia_account.h",
24 "wallet/instrument.cc",
25 "wallet/instrument.h",
26 "wallet/required_action.cc",
27 "wallet/required_action.h",
28 "wallet/wallet_address.cc",
29 "wallet/wallet_address.h",
30 "wallet/wallet_client.cc",
31 "wallet/wallet_client.h",
32 "wallet/wallet_client_delegate.h",
33 "wallet/wallet_items.cc",
34 "wallet/wallet_items.h",
35 "wallet/wallet_service_url.cc",
36 "wallet/wallet_service_url.h",
37 "wallet/wallet_signin_helper.cc",
38 "wallet/wallet_signin_helper.h",
49 "//components/autofill/content/common",
50 "//components/autofill/core/browser",
51 "//components/autofill/core/browser:regexes",
52 "//components/autofill/core/common",
53 "//components/os_crypt",
54 "//components/resources",
55 "//components/strings",
56 "//components/user_prefs",
57 "//components/webdata/common",
58 "//content/public/browser",
59 "//content/public/common",
66 "//third_party/libphonenumber",
67 "//third_party/libjingle",
75 proto_library("risk_proto") {
77 "risk/proto/fingerprint.proto",
79 proto_out_dir = "components/autofill/content/browser/risk/proto"
82 static_library("test_support") {
85 "wallet/mock_wallet_client.cc",
86 "wallet/mock_wallet_client.h",
87 "wallet/wallet_test_util.cc",
88 "wallet/wallet_test_util.h",
98 source_set("unit_tests") {
101 "content_autofill_driver_unittest.cc",
102 "request_autocomplete_manager_unittest.cc",
103 "wallet/full_wallet_unittest.cc",
104 "wallet/instrument_unittest.cc",
105 "wallet/wallet_address_unittest.cc",
106 "wallet/wallet_client_unittest.cc",
107 "wallet/wallet_items_unittest.cc",
108 "wallet/wallet_service_url_unittest.cc",
109 "wallet/wallet_signin_helper_unittest.cc",
116 "//components/autofill/content/common",
117 "//components/autofill/core/browser",
118 "//components/autofill/core/browser:test_support",
119 "//components/autofill/core/common",
120 "//content/public/browser",
121 "//content/public/common",
122 "//content/test:test_support",
124 "//ipc:test_support",
126 "//net:test_support",