| 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 "phone_number.h", | 98 "phone_number.h", |
| 99 "phone_number_i18n.cc", | 99 "phone_number_i18n.cc", |
| 100 "phone_number_i18n.h", | 100 "phone_number_i18n.h", |
| 101 "popup_item_ids.h", | 101 "popup_item_ids.h", |
| 102 "server_field_types_util.cc", | 102 "server_field_types_util.cc", |
| 103 "server_field_types_util.h", | 103 "server_field_types_util.h", |
| 104 "state_names.cc", | 104 "state_names.cc", |
| 105 "state_names.h", | 105 "state_names.h", |
| 106 "suggestion.cc", | 106 "suggestion.cc", |
| 107 "suggestion.h", | 107 "suggestion.h", |
| 108 "ui/card_unmask_prompt_controller.h", |
| 109 "ui/card_unmask_prompt_controller_impl.cc", |
| 110 "ui/card_unmask_prompt_controller_impl.h", |
| 111 "ui/card_unmask_prompt_view.h", |
| 108 "validation.cc", | 112 "validation.cc", |
| 109 "validation.h", | 113 "validation.h", |
| 110 "wallet/real_pan_wallet_client.cc", | 114 "wallet/real_pan_wallet_client.cc", |
| 111 "wallet/real_pan_wallet_client.h", | 115 "wallet/real_pan_wallet_client.h", |
| 112 "webdata/autocomplete_syncable_service.cc", | 116 "webdata/autocomplete_syncable_service.cc", |
| 113 "webdata/autocomplete_syncable_service.h", | 117 "webdata/autocomplete_syncable_service.h", |
| 114 "webdata/autofill_change.cc", | 118 "webdata/autofill_change.cc", |
| 115 "webdata/autofill_change.h", | 119 "webdata/autofill_change.h", |
| 116 "webdata/autofill_entry.cc", | 120 "webdata/autofill_entry.cc", |
| 117 "webdata/autofill_entry.h", | 121 "webdata/autofill_entry.h", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 259 "//sync", | 263 "//sync", |
| 260 "//sync:test_support_sync_api", | 264 "//sync:test_support_sync_api", |
| 261 "//testing/gmock", | 265 "//testing/gmock", |
| 262 "//testing/gtest", | 266 "//testing/gtest", |
| 263 "//third_party/libphonenumber", | 267 "//third_party/libphonenumber", |
| 264 "//third_party/libjingle", | 268 "//third_party/libjingle", |
| 265 "//ui/base", | 269 "//ui/base", |
| 266 "//url", | 270 "//url", |
| 267 ] | 271 ] |
| 268 } | 272 } |
| OLD | NEW |