BUILD.gn 1017 B

123456789101112131415161718192021222324252627282930313233343536
  1. # Copyright 2022 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/config/ui.gni")
  5. assert(is_chromeos_ash)
  6. source_set("in_session_auth") {
  7. sources = [
  8. "auth_dialog_contents_view.cc",
  9. "auth_dialog_contents_view.h",
  10. "authentication_dialog.cc",
  11. "authentication_dialog.h",
  12. "in_session_auth_dialog.cc",
  13. "in_session_auth_dialog.h",
  14. "in_session_auth_dialog_controller_impl.cc",
  15. "in_session_auth_dialog_controller_impl.h",
  16. "webauthn_dialog_controller_impl.cc",
  17. "webauthn_dialog_controller_impl.h",
  18. "webauthn_request_registrar_impl.cc",
  19. "webauthn_request_registrar_impl.h",
  20. ]
  21. deps = [
  22. "//ash/components/login/auth",
  23. "//ash/login/resources",
  24. "//ash/public/cpp",
  25. "//ash/resources/vector_icons",
  26. "//ash/strings",
  27. "//base",
  28. "//chromeos/ash/components/dbus/userdataauth",
  29. "//chromeos/components/webauthn",
  30. "//ui/views",
  31. ]
  32. }