Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(555)

Side by Side Diff: components/autofill/core/browser/BUILD.gn

Issue 772253003: Create an autofill Suggestion class (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 } 181 }
178 } 182 }
179 183
180 static_library("test_support") { 184 static_library("test_support") {
181 testonly = true 185 testonly = true
182 sources = [ 186 sources = [
183 "autofill_test_utils.cc", 187 "autofill_test_utils.cc",
184 "autofill_test_utils.h", 188 "autofill_test_utils.h",
185 "data_driven_test.cc", 189 "data_driven_test.cc",
186 "data_driven_test.h", 190 "data_driven_test.h",
191 "suggestion_test_helpers.h",
187 "test_autofill_client.cc", 192 "test_autofill_client.cc",
188 "test_autofill_client.h", 193 "test_autofill_client.h",
189 "test_autofill_driver.cc", 194 "test_autofill_driver.cc",
190 "test_autofill_driver.h", 195 "test_autofill_driver.h",
191 "test_autofill_external_delegate.cc", 196 "test_autofill_external_delegate.cc",
192 "test_autofill_external_delegate.h", 197 "test_autofill_external_delegate.h",
193 "test_personal_data_manager.cc", 198 "test_personal_data_manager.cc",
194 "test_personal_data_manager.h", 199 "test_personal_data_manager.h",
195 ] 200 ]
196 201
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 "//sync", 266 "//sync",
262 "//sync:test_support_sync_api", 267 "//sync:test_support_sync_api",
263 "//testing/gmock", 268 "//testing/gmock",
264 "//testing/gtest", 269 "//testing/gtest",
265 "//third_party/libphonenumber", 270 "//third_party/libphonenumber",
266 "//third_party/libjingle", 271 "//third_party/libjingle",
267 "//ui/base", 272 "//ui/base",
268 "//url", 273 "//url",
269 ] 274 ]
270 } 275 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698