| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 autofill_enable_sync = !is_android_webview_build | 7 autofill_enable_sync = !is_android_webview_build |
| 8 } else { | 8 } else { |
| 9 autofill_enable_sync = true | 9 autofill_enable_sync = true |
| 10 } | 10 } |
| (...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 112 "phone_number.h", | 112 "phone_number.h", |
| 113 "phone_number_i18n.cc", | 113 "phone_number_i18n.cc", |
| 114 "phone_number_i18n.h", | 114 "phone_number_i18n.h", |
| 115 "popup_item_ids.h", | 115 "popup_item_ids.h", |
| 116 "state_names.cc", | 116 "state_names.cc", |
| 117 "state_names.h", | 117 "state_names.h", |
| 118 "suggestion.cc", | 118 "suggestion.cc", |
| 119 "suggestion.h", | 119 "suggestion.h", |
| 120 "validation.cc", | 120 "validation.cc", |
| 121 "validation.h", | 121 "validation.h", |
| 122 "wallet/real_pan_wallet_client.cc", |
| 123 "wallet/real_pan_wallet_client.h", |
| 122 "webdata/autocomplete_syncable_service.cc", | 124 "webdata/autocomplete_syncable_service.cc", |
| 123 "webdata/autocomplete_syncable_service.h", | 125 "webdata/autocomplete_syncable_service.h", |
| 124 "webdata/autofill_change.cc", | 126 "webdata/autofill_change.cc", |
| 125 "webdata/autofill_change.h", | 127 "webdata/autofill_change.h", |
| 126 "webdata/autofill_entry.cc", | 128 "webdata/autofill_entry.cc", |
| 127 "webdata/autofill_entry.h", | 129 "webdata/autofill_entry.h", |
| 128 "webdata/autofill_profile_syncable_service.cc", | 130 "webdata/autofill_profile_syncable_service.cc", |
| 129 "webdata/autofill_profile_syncable_service.h", | 131 "webdata/autofill_profile_syncable_service.h", |
| 130 "webdata/autofill_table.cc", | 132 "webdata/autofill_table.cc", |
| 131 "webdata/autofill_table.h", | 133 "webdata/autofill_table.h", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 273 "//sync", | 275 "//sync", |
| 274 "//sync:test_support_sync_api", | 276 "//sync:test_support_sync_api", |
| 275 "//testing/gmock", | 277 "//testing/gmock", |
| 276 "//testing/gtest", | 278 "//testing/gtest", |
| 277 "//third_party/libphonenumber", | 279 "//third_party/libphonenumber", |
| 278 "//third_party/libjingle", | 280 "//third_party/libjingle", |
| 279 "//ui/base", | 281 "//ui/base", |
| 280 "//url", | 282 "//url", |
| 281 ] | 283 ] |
| 282 } | 284 } |
| OLD | NEW |