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", |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 ] | 63 ] |
64 proto_out_dir = "components/autofill/content/browser/risk/proto" | 64 proto_out_dir = "components/autofill/content/browser/risk/proto" |
65 } | 65 } |
66 | 66 |
67 source_set("unit_tests") { | 67 source_set("unit_tests") { |
68 testonly = true | 68 testonly = true |
69 sources = [ | 69 sources = [ |
70 "content_autofill_driver_unittest.cc", | 70 "content_autofill_driver_unittest.cc", |
71 "request_autocomplete_manager_unittest.cc", | 71 "request_autocomplete_manager_unittest.cc", |
72 "wallet/full_wallet_unittest.cc", | 72 "wallet/full_wallet_unittest.cc", |
| 73 "wallet/real_pan_wallet_client_unittest.cc", |
73 "wallet/wallet_address_unittest.cc", | 74 "wallet/wallet_address_unittest.cc", |
74 "wallet/wallet_service_url_unittest.cc", | 75 "wallet/wallet_service_url_unittest.cc", |
75 ] | 76 ] |
76 | 77 |
77 deps = [ | 78 deps = [ |
78 ":browser", | 79 ":browser", |
79 "//base", | 80 "//base", |
80 "//components/autofill/content/common", | 81 "//components/autofill/content/common", |
81 "//components/autofill/content/browser/wallet:test_support", | 82 "//components/autofill/content/browser/wallet:test_support", |
82 "//components/autofill/core/browser", | 83 "//components/autofill/core/browser", |
83 "//components/autofill/core/browser:test_support", | 84 "//components/autofill/core/browser:test_support", |
84 "//components/autofill/core/common", | 85 "//components/autofill/core/common", |
85 "//content/public/browser", | 86 "//content/public/browser", |
86 "//content/public/common", | 87 "//content/public/common", |
87 "//content/test:test_support", | 88 "//content/test:test_support", |
88 "//google_apis", | 89 "//google_apis", |
| 90 "//google_apis:test_support", |
89 "//ipc:test_support", | 91 "//ipc:test_support", |
90 "//net", | 92 "//net", |
91 "//net:test_support", | 93 "//net:test_support", |
92 "//testing/gmock", | 94 "//testing/gmock", |
93 "//testing/gtest", | 95 "//testing/gtest", |
94 ] | 96 ] |
95 } | 97 } |
OLD | NEW |