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 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 ] | 78 ] |
79 proto_out_dir = "components/autofill/content/browser/risk/proto" | 79 proto_out_dir = "components/autofill/content/browser/risk/proto" |
80 } | 80 } |
81 | 81 |
82 source_set("unit_tests") { | 82 source_set("unit_tests") { |
83 testonly = true | 83 testonly = true |
84 sources = [ | 84 sources = [ |
85 "content_autofill_driver_unittest.cc", | 85 "content_autofill_driver_unittest.cc", |
86 "request_autocomplete_manager_unittest.cc", | 86 "request_autocomplete_manager_unittest.cc", |
87 "wallet/full_wallet_unittest.cc", | 87 "wallet/full_wallet_unittest.cc", |
88 "wallet/instrument_unittest.cc", | |
89 "wallet/wallet_address_unittest.cc", | 88 "wallet/wallet_address_unittest.cc", |
90 "wallet/wallet_client_unittest.cc", | |
91 "wallet/wallet_items_unittest.cc", | |
92 "wallet/wallet_service_url_unittest.cc", | 89 "wallet/wallet_service_url_unittest.cc", |
93 "wallet/wallet_signin_helper_unittest.cc", | |
94 ] | 90 ] |
95 | 91 |
96 deps = [ | 92 deps = [ |
97 ":browser", | 93 ":browser", |
98 "//base", | 94 "//base", |
99 "//components/autofill/content/common", | 95 "//components/autofill/content/common", |
100 "//components/autofill/content/browser/wallet:test_support", | 96 "//components/autofill/content/browser/wallet:test_support", |
101 "//components/autofill/core/browser", | 97 "//components/autofill/core/browser", |
102 "//components/autofill/core/browser:test_support", | 98 "//components/autofill/core/browser:test_support", |
103 "//components/autofill/core/common", | 99 "//components/autofill/core/common", |
104 "//content/public/browser", | 100 "//content/public/browser", |
105 "//content/public/common", | 101 "//content/public/common", |
106 "//content/test:test_support", | 102 "//content/test:test_support", |
107 "//google_apis", | 103 "//google_apis", |
108 "//ipc:test_support", | 104 "//ipc:test_support", |
109 "//net", | 105 "//net", |
110 "//net:test_support", | 106 "//net:test_support", |
111 "//testing/gmock", | 107 "//testing/gmock", |
112 "//testing/gtest", | 108 "//testing/gtest", |
113 ] | 109 ] |
114 } | 110 } |
OLD | NEW |