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

Side by Side Diff: chrome/browser/chromeos/BUILD.gn

Issue 2715823004: Add FingerprintUnlock KeyedService for each profile (Closed)
Patch Set: rebase Created 3 years, 9 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
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/quick_unlock_private/quick_unlock_private_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//extensions/features/features.gni") 7 import("//extensions/features/features.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//printing/features/features.gni") 9 import("//printing/features/features.gni")
10 import("//third_party/protobuf/proto_library.gni") 10 import("//third_party/protobuf/proto_library.gni")
(...skipping 746 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 "login/lock/screen_locker.cc", 757 "login/lock/screen_locker.cc",
758 "login/lock/screen_locker.h", 758 "login/lock/screen_locker.h",
759 "login/lock/webui_screen_locker.cc", 759 "login/lock/webui_screen_locker.cc",
760 "login/lock/webui_screen_locker.h", 760 "login/lock/webui_screen_locker.h",
761 "login/login_wizard.h", 761 "login/login_wizard.h",
762 "login/oobe_screen.cc", 762 "login/oobe_screen.cc",
763 "login/oobe_screen.h", 763 "login/oobe_screen.h",
764 "login/profile_auth_data.cc", 764 "login/profile_auth_data.cc",
765 "login/profile_auth_data.h", 765 "login/profile_auth_data.h",
766 "login/proxy_settings_dialog.h", 766 "login/proxy_settings_dialog.h",
767 "login/quick_unlock/fingerprint_storage.cc",
768 "login/quick_unlock/fingerprint_storage.h",
767 "login/quick_unlock/pin_storage.cc", 769 "login/quick_unlock/pin_storage.cc",
768 "login/quick_unlock/pin_storage.h", 770 "login/quick_unlock/pin_storage.h",
769 "login/quick_unlock/pin_storage_factory.cc", 771 "login/quick_unlock/quick_unlock_factory.cc",
770 "login/quick_unlock/pin_storage_factory.h", 772 "login/quick_unlock/quick_unlock_factory.h",
771 "login/quick_unlock/quick_unlock_notification_controller.cc", 773 "login/quick_unlock/quick_unlock_notification_controller.cc",
772 "login/quick_unlock/quick_unlock_notification_controller.h", 774 "login/quick_unlock/quick_unlock_notification_controller.h",
775 "login/quick_unlock/quick_unlock_storage.cc",
776 "login/quick_unlock/quick_unlock_storage.h",
773 "login/quick_unlock/quick_unlock_utils.cc", 777 "login/quick_unlock/quick_unlock_utils.cc",
774 "login/quick_unlock/quick_unlock_utils.h", 778 "login/quick_unlock/quick_unlock_utils.h",
775 "login/reauth_stats.cc", 779 "login/reauth_stats.cc",
776 "login/reauth_stats.h", 780 "login/reauth_stats.h",
777 "login/saml/saml_offline_signin_limiter.cc", 781 "login/saml/saml_offline_signin_limiter.cc",
778 "login/saml/saml_offline_signin_limiter.h", 782 "login/saml/saml_offline_signin_limiter.h",
779 "login/saml/saml_offline_signin_limiter_factory.cc", 783 "login/saml/saml_offline_signin_limiter_factory.cc",
780 "login/saml/saml_offline_signin_limiter_factory.h", 784 "login/saml/saml_offline_signin_limiter_factory.h",
781 "login/screen_manager.cc", 785 "login/screen_manager.cc",
782 "login/screen_manager.h", 786 "login/screen_manager.h",
(...skipping 822 matching lines...) Expand 10 before | Expand all | Expand 10 after
1605 "libc_close_tracking_unittest.cc", 1609 "libc_close_tracking_unittest.cc",
1606 "locale_change_guard_unittest.cc", 1610 "locale_change_guard_unittest.cc",
1607 "login/auth/cryptohome_authenticator_unittest.cc", 1611 "login/auth/cryptohome_authenticator_unittest.cc",
1608 "login/easy_unlock/easy_unlock_challenge_wrapper_unittest.cc", 1612 "login/easy_unlock/easy_unlock_challenge_wrapper_unittest.cc",
1609 "login/easy_unlock/easy_unlock_tpm_key_manager_unittest.cc", 1613 "login/easy_unlock/easy_unlock_tpm_key_manager_unittest.cc",
1610 "login/enrollment/enrollment_screen_unittest.cc", 1614 "login/enrollment/enrollment_screen_unittest.cc",
1611 "login/error_screens_histogram_helper_unittest.cc", 1615 "login/error_screens_histogram_helper_unittest.cc",
1612 "login/existing_user_controller_auto_login_unittest.cc", 1616 "login/existing_user_controller_auto_login_unittest.cc",
1613 "login/hwid_checker_unittest.cc", 1617 "login/hwid_checker_unittest.cc",
1614 "login/profile_auth_data_unittest.cc", 1618 "login/profile_auth_data_unittest.cc",
1619 "login/quick_unlock/fingerprint_storage_unittest.cc",
1615 "login/quick_unlock/pin_storage_unittest.cc", 1620 "login/quick_unlock/pin_storage_unittest.cc",
1621 "login/quick_unlock/quick_unlock_storage_unittest.cc",
1616 "login/saml/saml_offline_signin_limiter_unittest.cc", 1622 "login/saml/saml_offline_signin_limiter_unittest.cc",
1617 "login/signin/merge_session_load_page_unittest.cc", 1623 "login/signin/merge_session_load_page_unittest.cc",
1618 "login/supervised/supervised_user_authentication_unittest.cc", 1624 "login/supervised/supervised_user_authentication_unittest.cc",
1619 "login/users/affiliation_unittest.cc", 1625 "login/users/affiliation_unittest.cc",
1620 "login/users/multi_profile_user_controller_unittest.cc", 1626 "login/users/multi_profile_user_controller_unittest.cc",
1621 "login/users/user_manager_unittest.cc", 1627 "login/users/user_manager_unittest.cc",
1622 "login/users/wallpaper/wallpaper_manager_unittest.cc", 1628 "login/users/wallpaper/wallpaper_manager_unittest.cc",
1623 "mobile/mobile_activator_unittest.cc", 1629 "mobile/mobile_activator_unittest.cc",
1624 "mobile_config_unittest.cc", 1630 "mobile_config_unittest.cc",
1625 "net/cert_verify_proc_chromeos_unittest.cc", 1631 "net/cert_verify_proc_chromeos_unittest.cc",
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
1780 "policy/proto/chrome_device_policy.proto", 1786 "policy/proto/chrome_device_policy.proto",
1781 "policy/proto/install_attributes.proto", 1787 "policy/proto/install_attributes.proto",
1782 ] 1788 ]
1783 } 1789 }
1784 1790
1785 proto_library("attestation_proto") { 1791 proto_library("attestation_proto") {
1786 sources = [ 1792 sources = [
1787 "attestation/attestation_key_payload.proto", 1793 "attestation/attestation_key_payload.proto",
1788 ] 1794 ]
1789 } 1795 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/chromeos/extensions/quick_unlock_private/quick_unlock_private_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698