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

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

Issue 1137513002: Autofill: Add WalletIntegrationAvailable() to components. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: Change pointer params to const ref. Add newline. Created 5 years, 7 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 # GYP version: components/autofill.gyp:autofill_core_browser 5 # GYP version: components/autofill.gyp:autofill_core_browser
6 static_library("browser") { 6 static_library("browser") {
7 sources = [ 7 sources = [
8 "address.cc", 8 "address.cc",
9 "address.h", 9 "address.h",
10 "address_field.cc", 10 "address_field.cc",
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 "email_field.h", 66 "email_field.h",
67 "field_types.h", 67 "field_types.h",
68 "form_field.cc", 68 "form_field.cc",
69 "form_field.h", 69 "form_field.h",
70 "form_group.cc", 70 "form_group.cc",
71 "form_group.h", 71 "form_group.h",
72 "form_structure.cc", 72 "form_structure.cc",
73 "form_structure.h", 73 "form_structure.h",
74 "name_field.cc", 74 "name_field.cc",
75 "name_field.h", 75 "name_field.h",
76 "options_util.cc",
77 "options_util.h",
76 "password_generator.cc", 78 "password_generator.cc",
77 "password_generator.h", 79 "password_generator.h",
78 "personal_data_manager.cc", 80 "personal_data_manager.cc",
79 "personal_data_manager.h", 81 "personal_data_manager.h",
80 "personal_data_manager_mac.mm", 82 "personal_data_manager_mac.mm",
81 "personal_data_manager_observer.h", 83 "personal_data_manager_observer.h",
82 "phone_field.cc", 84 "phone_field.cc",
83 "phone_field.h", 85 "phone_field.h",
84 "phone_number.cc", 86 "phone_number.cc",
85 "phone_number.h", 87 "phone_number.h",
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 "//sync", 248 "//sync",
247 "//sync:test_support_sync_api", 249 "//sync:test_support_sync_api",
248 "//testing/gmock", 250 "//testing/gmock",
249 "//testing/gtest", 251 "//testing/gtest",
250 "//third_party/libphonenumber", 252 "//third_party/libphonenumber",
251 "//third_party/libjingle", 253 "//third_party/libjingle",
252 "//ui/base", 254 "//ui/base",
253 "//url", 255 "//url",
254 ] 256 ]
255 } 257 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698