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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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/payments_client_unittest.cc", | 73 "wallet/payments_client_unittest.cc", |
74 "wallet/wallet_address_unittest.cc", | 74 "wallet/wallet_address_unittest.cc", |
75 "wallet/wallet_service_url_unittest.cc", | 75 "wallet/wallet_service_url_unittest.cc", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 ":browser", | 79 ":browser", |
80 "//base", | 80 "//base", |
| 81 "//components/autofill/content/browser/wallet:test_support", |
81 "//components/autofill/content/common", | 82 "//components/autofill/content/common", |
82 "//components/autofill/content/browser/wallet:test_support", | |
83 "//components/autofill/core/browser", | 83 "//components/autofill/core/browser", |
84 "//components/autofill/core/browser:test_support", | 84 "//components/autofill/core/browser:test_support", |
85 "//components/autofill/core/common", | 85 "//components/autofill/core/common", |
86 "//content/public/browser", | 86 "//content/public/browser", |
87 "//content/public/common", | 87 "//content/public/common", |
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 |