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/form_field_error.cc", | |
19 "wallet/form_field_error.h", | |
20 "wallet/full_wallet.cc", | 18 "wallet/full_wallet.cc", |
21 "wallet/full_wallet.h", | 19 "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", | 20 "wallet/wallet_address.cc", |
29 "wallet/wallet_address.h", | 21 "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", | 22 "wallet/wallet_service_url.cc", |
36 "wallet/wallet_service_url.h", | 23 "wallet/wallet_service_url.h", |
37 "wallet/wallet_signin_helper.cc", | |
38 "wallet/wallet_signin_helper.h", | |
39 ] | 24 ] |
40 | 25 |
41 configs += [ "//components/autofill/core/browser:wallet_service" ] | 26 configs += [ "//components/autofill/core/browser:wallet_service" ] |
42 | 27 |
43 public_deps = [ | 28 public_deps = [ |
44 "//skia", | 29 "//skia", |
45 ] | 30 ] |
46 deps = [ | 31 deps = [ |
47 ":risk_proto", | 32 ":risk_proto", |
48 "//base", | 33 "//base", |
(...skipping 29 matching lines...) Expand all Loading... |
78 ] | 63 ] |
79 proto_out_dir = "components/autofill/content/browser/risk/proto" | 64 proto_out_dir = "components/autofill/content/browser/risk/proto" |
80 } | 65 } |
81 | 66 |
82 source_set("unit_tests") { | 67 source_set("unit_tests") { |
83 testonly = true | 68 testonly = true |
84 sources = [ | 69 sources = [ |
85 "content_autofill_driver_unittest.cc", | 70 "content_autofill_driver_unittest.cc", |
86 "request_autocomplete_manager_unittest.cc", | 71 "request_autocomplete_manager_unittest.cc", |
87 "wallet/full_wallet_unittest.cc", | 72 "wallet/full_wallet_unittest.cc", |
88 "wallet/instrument_unittest.cc", | |
89 "wallet/wallet_address_unittest.cc", | 73 "wallet/wallet_address_unittest.cc", |
90 "wallet/wallet_client_unittest.cc", | |
91 "wallet/wallet_items_unittest.cc", | |
92 "wallet/wallet_service_url_unittest.cc", | 74 "wallet/wallet_service_url_unittest.cc", |
93 "wallet/wallet_signin_helper_unittest.cc", | |
94 ] | 75 ] |
95 | 76 |
96 deps = [ | 77 deps = [ |
97 ":browser", | 78 ":browser", |
98 "//base", | 79 "//base", |
99 "//components/autofill/content/common", | 80 "//components/autofill/content/common", |
100 "//components/autofill/content/browser/wallet:test_support", | 81 "//components/autofill/content/browser/wallet:test_support", |
101 "//components/autofill/core/browser", | 82 "//components/autofill/core/browser", |
102 "//components/autofill/core/browser:test_support", | 83 "//components/autofill/core/browser:test_support", |
103 "//components/autofill/core/common", | 84 "//components/autofill/core/common", |
104 "//content/public/browser", | 85 "//content/public/browser", |
105 "//content/public/common", | 86 "//content/public/common", |
106 "//content/test:test_support", | 87 "//content/test:test_support", |
107 "//google_apis", | 88 "//google_apis", |
108 "//ipc:test_support", | 89 "//ipc:test_support", |
109 "//net", | 90 "//net", |
110 "//net:test_support", | 91 "//net:test_support", |
111 "//testing/gmock", | 92 "//testing/gmock", |
112 "//testing/gtest", | 93 "//testing/gtest", |
113 ] | 94 ] |
114 } | 95 } |
OLD | NEW |