| 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 29 matching lines...) Expand all Loading... |
| 40 "address_field.h", | 40 "address_field.h", |
| 41 "address_i18n.cc", | 41 "address_i18n.cc", |
| 42 "address_i18n.h", | 42 "address_i18n.h", |
| 43 "autocomplete_history_manager.cc", | 43 "autocomplete_history_manager.cc", |
| 44 "autocomplete_history_manager.h", | 44 "autocomplete_history_manager.h", |
| 45 "autofill-inl.h", | 45 "autofill-inl.h", |
| 46 "autofill_country.cc", | 46 "autofill_country.cc", |
| 47 "autofill_country.h", | 47 "autofill_country.h", |
| 48 "autofill_data_model.cc", | 48 "autofill_data_model.cc", |
| 49 "autofill_data_model.h", | 49 "autofill_data_model.h", |
| 50 "autofill_download.cc", | 50 "autofill_download_manager.cc", |
| 51 "autofill_download.h", | 51 "autofill_download_manager.h", |
| 52 "autofill_driver.h", | 52 "autofill_driver.h", |
| 53 "autofill_external_delegate.cc", | 53 "autofill_external_delegate.cc", |
| 54 "autofill_external_delegate.h", | 54 "autofill_external_delegate.h", |
| 55 "autofill_field.cc", | 55 "autofill_field.cc", |
| 56 "autofill_field.h", | 56 "autofill_field.h", |
| 57 "autofill_ie_toolbar_import_win.cc", | 57 "autofill_ie_toolbar_import_win.cc", |
| 58 "autofill_ie_toolbar_import_win.h", | 58 "autofill_ie_toolbar_import_win.h", |
| 59 "autofill_manager.cc", | 59 "autofill_manager.cc", |
| 60 "autofill_manager.h", | 60 "autofill_manager.h", |
| 61 "autofill_client.h", | 61 "autofill_client.h", |
| (...skipping 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 203 } | 203 } |
| 204 | 204 |
| 205 source_set("unit_tests") { | 205 source_set("unit_tests") { |
| 206 sources = [ | 206 sources = [ |
| 207 "address_field_unittest.cc", | 207 "address_field_unittest.cc", |
| 208 "address_unittest.cc", | 208 "address_unittest.cc", |
| 209 "android/auxiliary_profile_unittest_android.cc", | 209 "android/auxiliary_profile_unittest_android.cc", |
| 210 "autocomplete_history_manager_unittest.cc", | 210 "autocomplete_history_manager_unittest.cc", |
| 211 "autofill_country_unittest.cc", | 211 "autofill_country_unittest.cc", |
| 212 "autofill_data_model_unittest.cc", | 212 "autofill_data_model_unittest.cc", |
| 213 "autofill_download_unittest.cc", | 213 "autofill_download_manager_unittest.cc", |
| 214 "autofill_external_delegate_unittest.cc", | 214 "autofill_external_delegate_unittest.cc", |
| 215 "autofill_field_unittest.cc", | 215 "autofill_field_unittest.cc", |
| 216 "autofill_ie_toolbar_import_win_unittest.cc", | 216 "autofill_ie_toolbar_import_win_unittest.cc", |
| 217 "autofill_manager_unittest.cc", | 217 "autofill_manager_unittest.cc", |
| 218 "autofill_merge_unittest.cc", | 218 "autofill_merge_unittest.cc", |
| 219 "autofill_metrics_unittest.cc", | 219 "autofill_metrics_unittest.cc", |
| 220 "autofill_profile_unittest.cc", | 220 "autofill_profile_unittest.cc", |
| 221 "autofill_regexes_unittest.cc", | 221 "autofill_regexes_unittest.cc", |
| 222 "autofill_type_unittest.cc", | 222 "autofill_type_unittest.cc", |
| 223 "autofill_xml_parser_unittest.cc", | 223 "autofill_xml_parser_unittest.cc", |
| (...skipping 19 matching lines...) Expand all Loading... |
| 243 deps = [ | 243 deps = [ |
| 244 ":browser", | 244 ":browser", |
| 245 ":test_support", | 245 ":test_support", |
| 246 "//components/resources", | 246 "//components/resources", |
| 247 "//components/strings", | 247 "//components/strings", |
| 248 "//testing/gmock", | 248 "//testing/gmock", |
| 249 "//third_party/libphonenumber", | 249 "//third_party/libphonenumber", |
| 250 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) | 250 #'../third_party/libjingle/libjingle.gyp:libjingle', TODO(GYP) |
| 251 ] | 251 ] |
| 252 } | 252 } |
| OLD | NEW |