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 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
173 ] | 173 ] |
174 } | 174 } |
175 | 175 |
176 static_library("test_support") { | 176 static_library("test_support") { |
177 testonly = true | 177 testonly = true |
178 sources = [ | 178 sources = [ |
179 "fake_affiliation_api.cc", | 179 "fake_affiliation_api.cc", |
180 "fake_affiliation_api.h", | 180 "fake_affiliation_api.h", |
181 "fake_affiliation_fetcher.cc", | 181 "fake_affiliation_fetcher.cc", |
182 "fake_affiliation_fetcher.h", | 182 "fake_affiliation_fetcher.h", |
| 183 "fake_form_fetcher.cc", |
| 184 "fake_form_fetcher.h", |
183 "mock_affiliated_match_helper.cc", | 185 "mock_affiliated_match_helper.cc", |
184 "mock_affiliated_match_helper.h", | 186 "mock_affiliated_match_helper.h", |
185 "mock_affiliation_consumer.cc", | 187 "mock_affiliation_consumer.cc", |
186 "mock_affiliation_consumer.h", | 188 "mock_affiliation_consumer.h", |
187 "mock_password_store.cc", | 189 "mock_password_store.cc", |
188 "mock_password_store.h", | 190 "mock_password_store.h", |
189 "password_manager_test_utils.cc", | 191 "password_manager_test_utils.cc", |
190 "password_manager_test_utils.h", | 192 "password_manager_test_utils.h", |
191 "stub_credentials_filter.cc", | 193 "stub_credentials_filter.cc", |
192 "stub_credentials_filter.h", | 194 "stub_credentials_filter.h", |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
308 "//components/sync:test_support_model", | 310 "//components/sync:test_support_model", |
309 "//components/variations", | 311 "//components/variations", |
310 "//net:test_support", | 312 "//net:test_support", |
311 "//sql:test_support", | 313 "//sql:test_support", |
312 "//testing/gmock", | 314 "//testing/gmock", |
313 "//testing/gtest", | 315 "//testing/gtest", |
314 "//ui/base", | 316 "//ui/base", |
315 "//url", | 317 "//url", |
316 ] | 318 ] |
317 } | 319 } |
OLD | NEW |