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

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

Issue 896583003: Add risk data to getrealpan request. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixes for android Created 5 years, 10 months 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 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "autofill_regexes.h", 76 "autofill_regexes.h",
77 "autofill_scanner.cc", 77 "autofill_scanner.cc",
78 "autofill_scanner.h", 78 "autofill_scanner.h",
79 "autofill_server_field_info.h", 79 "autofill_server_field_info.h",
80 "autofill_sync_constants.cc", 80 "autofill_sync_constants.cc",
81 "autofill_sync_constants.h", 81 "autofill_sync_constants.h",
82 "autofill_type.cc", 82 "autofill_type.cc",
83 "autofill_type.h", 83 "autofill_type.h",
84 "autofill_xml_parser.cc", 84 "autofill_xml_parser.cc",
85 "autofill_xml_parser.h", 85 "autofill_xml_parser.h",
86 "card_unmask_delegate.cc",
87 "card_unmask_delegate.h",
86 "contact_info.cc", 88 "contact_info.cc",
87 "contact_info.h", 89 "contact_info.h",
88 "credit_card.cc", 90 "credit_card.cc",
89 "credit_card.h", 91 "credit_card.h",
90 "credit_card_field.cc", 92 "credit_card_field.cc",
91 "credit_card_field.h", 93 "credit_card_field.h",
92 "email_field.cc", 94 "email_field.cc",
93 "email_field.h", 95 "email_field.h",
94 "field_types.h", 96 "field_types.h",
95 "form_field.cc", 97 "form_field.cc",
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 "//sync", 277 "//sync",
276 "//sync:test_support_sync_api", 278 "//sync:test_support_sync_api",
277 "//testing/gmock", 279 "//testing/gmock",
278 "//testing/gtest", 280 "//testing/gtest",
279 "//third_party/libphonenumber", 281 "//third_party/libphonenumber",
280 "//third_party/libjingle", 282 "//third_party/libjingle",
281 "//ui/base", 283 "//ui/base",
282 "//url", 284 "//url",
283 ] 285 ]
284 } 286 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698