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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "dialog_section.h", | 77 "dialog_section.h", |
78 "email_field.cc", | 78 "email_field.cc", |
79 "email_field.h", | 79 "email_field.h", |
80 "field_types.h", | 80 "field_types.h", |
81 "form_field.cc", | 81 "form_field.cc", |
82 "form_field.h", | 82 "form_field.h", |
83 "form_group.cc", | 83 "form_group.cc", |
84 "form_group.h", | 84 "form_group.h", |
85 "form_structure.cc", | 85 "form_structure.cc", |
86 "form_structure.h", | 86 "form_structure.h", |
| 87 "legal_message_line.cc", |
| 88 "legal_message_line.h", |
87 "name_field.cc", | 89 "name_field.cc", |
88 "name_field.h", | 90 "name_field.h", |
89 "options_util.cc", | 91 "options_util.cc", |
90 "options_util.h", | 92 "options_util.h", |
91 "password_generator.cc", | 93 "password_generator.cc", |
92 "password_generator.h", | 94 "password_generator.h", |
93 "payments/payments_client.cc", | 95 "payments/payments_client.cc", |
94 "payments/payments_client.h", | 96 "payments/payments_client.h", |
95 "payments/payments_request.h", | 97 "payments/payments_request.h", |
96 "personal_data_manager.cc", | 98 "personal_data_manager.cc", |
(...skipping 162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
259 "autofill_merge_unittest.cc", | 261 "autofill_merge_unittest.cc", |
260 "autofill_metrics_unittest.cc", | 262 "autofill_metrics_unittest.cc", |
261 "autofill_profile_unittest.cc", | 263 "autofill_profile_unittest.cc", |
262 "autofill_type_unittest.cc", | 264 "autofill_type_unittest.cc", |
263 "autofill_xml_parser_unittest.cc", | 265 "autofill_xml_parser_unittest.cc", |
264 "contact_info_unittest.cc", | 266 "contact_info_unittest.cc", |
265 "credit_card_field_unittest.cc", | 267 "credit_card_field_unittest.cc", |
266 "credit_card_unittest.cc", | 268 "credit_card_unittest.cc", |
267 "form_field_unittest.cc", | 269 "form_field_unittest.cc", |
268 "form_structure_unittest.cc", | 270 "form_structure_unittest.cc", |
| 271 "legal_message_line_unittest.cc", |
269 "name_field_unittest.cc", | 272 "name_field_unittest.cc", |
270 "options_util_unittest.cc", | 273 "options_util_unittest.cc", |
271 "password_generator_unittest.cc", | 274 "password_generator_unittest.cc", |
272 "personal_data_manager_unittest.cc", | 275 "personal_data_manager_unittest.cc", |
273 "phone_field_unittest.cc", | 276 "phone_field_unittest.cc", |
274 "phone_number_i18n_unittest.cc", | 277 "phone_number_i18n_unittest.cc", |
275 "phone_number_unittest.cc", | 278 "phone_number_unittest.cc", |
276 "ui/card_unmask_prompt_controller_impl_unittest.cc", | 279 "ui/card_unmask_prompt_controller_impl_unittest.cc", |
277 "validation_unittest.cc", | 280 "validation_unittest.cc", |
278 "webdata/autofill_data_type_controller_unittest.cc", | 281 "webdata/autofill_data_type_controller_unittest.cc", |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
310 "//sync", | 313 "//sync", |
311 "//sync:test_support_sync_api", | 314 "//sync:test_support_sync_api", |
312 "//testing/gmock", | 315 "//testing/gmock", |
313 "//testing/gtest", | 316 "//testing/gtest", |
314 "//third_party/libaddressinput:util", | 317 "//third_party/libaddressinput:util", |
315 "//third_party/libphonenumber", | 318 "//third_party/libphonenumber", |
316 "//ui/base", | 319 "//ui/base", |
317 "//url", | 320 "//url", |
318 ] | 321 ] |
319 } | 322 } |
OLD | NEW |