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("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 | 6 |
7 # This config sets the define that controls which Wallet service to contact | 7 # This config sets the define that controls which Wallet service to contact |
8 # for features using Wallet integration. Unofficial builds won't have the | 8 # for features using Wallet integration. Unofficial builds won't have the |
9 # proper API keys so it uses the "sandbox" test servers instead. | 9 # proper API keys so it uses the "sandbox" test servers instead. |
10 config("wallet_service") { | 10 config("wallet_service") { |
(...skipping 233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
244 "credit_card_unittest.cc", | 244 "credit_card_unittest.cc", |
245 "form_field_unittest.cc", | 245 "form_field_unittest.cc", |
246 "form_structure_unittest.cc", | 246 "form_structure_unittest.cc", |
247 "name_field_unittest.cc", | 247 "name_field_unittest.cc", |
248 "options_util_unittest.cc", | 248 "options_util_unittest.cc", |
249 "password_generator_unittest.cc", | 249 "password_generator_unittest.cc", |
250 "personal_data_manager_unittest.cc", | 250 "personal_data_manager_unittest.cc", |
251 "phone_field_unittest.cc", | 251 "phone_field_unittest.cc", |
252 "phone_number_i18n_unittest.cc", | 252 "phone_number_i18n_unittest.cc", |
253 "phone_number_unittest.cc", | 253 "phone_number_unittest.cc", |
| 254 "ui/card_unmask_prompt_controller_impl_unittest.cc", |
254 "validation_unittest.cc", | 255 "validation_unittest.cc", |
255 "webdata/autofill_profile_syncable_service_unittest.cc", | 256 "webdata/autofill_profile_syncable_service_unittest.cc", |
256 "webdata/autofill_table_unittest.cc", | 257 "webdata/autofill_table_unittest.cc", |
257 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", | 258 "webdata/autofill_wallet_metadata_syncable_service_unittest.cc", |
258 "webdata/web_data_service_unittest.cc", | 259 "webdata/web_data_service_unittest.cc", |
259 ] | 260 ] |
260 | 261 |
261 deps = [ | 262 deps = [ |
262 ":browser", | 263 ":browser", |
263 ":test_support", | 264 ":test_support", |
(...skipping 21 matching lines...) Expand all Loading... |
285 "//sync:test_support_sync_api", | 286 "//sync:test_support_sync_api", |
286 "//testing/gmock", | 287 "//testing/gmock", |
287 "//testing/gtest", | 288 "//testing/gtest", |
288 "//third_party/libaddressinput:util", | 289 "//third_party/libaddressinput:util", |
289 "//third_party/libphonenumber", | 290 "//third_party/libphonenumber", |
290 "//third_party/libjingle", | 291 "//third_party/libjingle", |
291 "//ui/base", | 292 "//ui/base", |
292 "//url", | 293 "//url", |
293 ] | 294 ] |
294 } | 295 } |
OLD | NEW |