| 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 28 matching lines...) Expand all Loading... |
| 39 sources = [ | 39 sources = [ |
| 40 "address.cc", | 40 "address.cc", |
| 41 "address.h", | 41 "address.h", |
| 42 "address_field.cc", | 42 "address_field.cc", |
| 43 "address_field.h", | 43 "address_field.h", |
| 44 "address_i18n.cc", | 44 "address_i18n.cc", |
| 45 "address_i18n.h", | 45 "address_i18n.h", |
| 46 "autocomplete_history_manager.cc", | 46 "autocomplete_history_manager.cc", |
| 47 "autocomplete_history_manager.h", | 47 "autocomplete_history_manager.h", |
| 48 "autofill-inl.h", | 48 "autofill-inl.h", |
| 49 "autofill_cc_infobar_delegate.cc", |
| 50 "autofill_cc_infobar_delegate.h", |
| 49 "autofill_country.cc", | 51 "autofill_country.cc", |
| 50 "autofill_country.h", | 52 "autofill_country.h", |
| 51 "autofill_data_model.cc", | 53 "autofill_data_model.cc", |
| 52 "autofill_data_model.h", | 54 "autofill_data_model.h", |
| 53 "autofill_download_manager.cc", | 55 "autofill_download_manager.cc", |
| 54 "autofill_download_manager.h", | 56 "autofill_download_manager.h", |
| 55 "autofill_driver.h", | 57 "autofill_driver.h", |
| 56 "autofill_external_delegate.cc", | 58 "autofill_external_delegate.cc", |
| 57 "autofill_external_delegate.h", | 59 "autofill_external_delegate.h", |
| 58 "autofill_field.cc", | 60 "autofill_field.cc", |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 | 140 |
| 139 # Compile the generated regex file. | 141 # Compile the generated regex file. |
| 140 sources += get_target_outputs(":regexes") | 142 sources += get_target_outputs(":regexes") |
| 141 | 143 |
| 142 deps = [ | 144 deps = [ |
| 143 ":regexes", | 145 ":regexes", |
| 144 "//base", | 146 "//base", |
| 145 "//base:i18n", | 147 "//base:i18n", |
| 146 "//base:prefs", | 148 "//base:prefs", |
| 147 "//components/autofill/core/common", | 149 "//components/autofill/core/common", |
| 150 "//components/infobars/core", |
| 148 "//components/keyed_service/core", | 151 "//components/keyed_service/core", |
| 149 "//components/os_crypt", | 152 "//components/os_crypt", |
| 150 "//components/pref_registry", | 153 "//components/pref_registry", |
| 151 "//components/resources", | 154 "//components/resources", |
| 152 "//components/strings", | 155 "//components/strings", |
| 153 "//components/webdata/common", | 156 "//components/webdata/common", |
| 154 "//google_apis", | 157 "//google_apis", |
| 155 "//net", | 158 "//net", |
| 156 "//skia", | 159 "//skia", |
| 157 "//sql", | 160 "//sql", |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 270 "//sync", | 273 "//sync", |
| 271 "//sync:test_support_sync_api", | 274 "//sync:test_support_sync_api", |
| 272 "//testing/gmock", | 275 "//testing/gmock", |
| 273 "//testing/gtest", | 276 "//testing/gtest", |
| 274 "//third_party/libphonenumber", | 277 "//third_party/libphonenumber", |
| 275 "//third_party/libjingle", | 278 "//third_party/libjingle", |
| 276 "//ui/base", | 279 "//ui/base", |
| 277 "//url", | 280 "//url", |
| 278 ] | 281 ] |
| 279 } | 282 } |
| OLD | NEW |