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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 "autofill_popup_delegate.h", | 68 "autofill_popup_delegate.h", |
69 "autofill_profile.cc", | 69 "autofill_profile.cc", |
70 "autofill_profile.h", | 70 "autofill_profile.h", |
71 "autofill_regex_constants.cc.utf8", | 71 "autofill_regex_constants.cc.utf8", |
72 "autofill_regex_constants.h", | 72 "autofill_regex_constants.h", |
73 "autofill_regexes.cc", | 73 "autofill_regexes.cc", |
74 "autofill_regexes.h", | 74 "autofill_regexes.h", |
75 "autofill_scanner.cc", | 75 "autofill_scanner.cc", |
76 "autofill_scanner.h", | 76 "autofill_scanner.h", |
77 "autofill_server_field_info.h", | 77 "autofill_server_field_info.h", |
| 78 "autofill_sync_constants.cc", |
| 79 "autofill_sync_constants.h", |
78 "autofill_type.cc", | 80 "autofill_type.cc", |
79 "autofill_type.h", | 81 "autofill_type.h", |
80 "autofill_xml_parser.cc", | 82 "autofill_xml_parser.cc", |
81 "autofill_xml_parser.h", | 83 "autofill_xml_parser.h", |
82 "contact_info.cc", | 84 "contact_info.cc", |
83 "contact_info.h", | 85 "contact_info.h", |
84 "credit_card.cc", | 86 "credit_card.cc", |
85 "credit_card.h", | 87 "credit_card.h", |
86 "credit_card_field.cc", | 88 "credit_card_field.cc", |
87 "credit_card_field.h", | 89 "credit_card_field.h", |
(...skipping 16 matching lines...) Expand all Loading... |
104 "personal_data_manager_observer.h", | 106 "personal_data_manager_observer.h", |
105 "phone_field.cc", | 107 "phone_field.cc", |
106 "phone_field.h", | 108 "phone_field.h", |
107 "phone_number.cc", | 109 "phone_number.cc", |
108 "phone_number.h", | 110 "phone_number.h", |
109 "phone_number_i18n.cc", | 111 "phone_number_i18n.cc", |
110 "phone_number_i18n.h", | 112 "phone_number_i18n.h", |
111 "popup_item_ids.h", | 113 "popup_item_ids.h", |
112 "state_names.cc", | 114 "state_names.cc", |
113 "state_names.h", | 115 "state_names.h", |
| 116 "suggestion.cc", |
| 117 "suggestion.h", |
114 "validation.cc", | 118 "validation.cc", |
115 "validation.h", | 119 "validation.h", |
116 "webdata/autofill_change.cc", | 120 "webdata/autofill_change.cc", |
117 "webdata/autofill_change.h", | 121 "webdata/autofill_change.h", |
118 "webdata/autofill_entry.cc", | 122 "webdata/autofill_entry.cc", |
119 "webdata/autofill_entry.h", | 123 "webdata/autofill_entry.h", |
120 "webdata/autofill_profile_syncable_service.cc", | 124 "webdata/autofill_profile_syncable_service.cc", |
121 "webdata/autofill_profile_syncable_service.h", | 125 "webdata/autofill_profile_syncable_service.h", |
122 "webdata/autofill_table.cc", | 126 "webdata/autofill_table.cc", |
123 "webdata/autofill_table.h", | 127 "webdata/autofill_table.h", |
(...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
261 "//sync", | 265 "//sync", |
262 "//sync:test_support_sync_api", | 266 "//sync:test_support_sync_api", |
263 "//testing/gmock", | 267 "//testing/gmock", |
264 "//testing/gtest", | 268 "//testing/gtest", |
265 "//third_party/libphonenumber", | 269 "//third_party/libphonenumber", |
266 "//third_party/libjingle", | 270 "//third_party/libjingle", |
267 "//ui/base", | 271 "//ui/base", |
268 "//url", | 272 "//url", |
269 ] | 273 ] |
270 } | 274 } |
OLD | NEW |