BUILD.gn 454 B

123456789101112131415
  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. assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
  5. component("webauthn") {
  6. output_name = "chromeos_webauthn"
  7. defines = [ "IS_CHROMEOS_WEBAUTHN_IMPL" ]
  8. sources = [
  9. "webauthn_request_registrar.cc",
  10. "webauthn_request_registrar.h",
  11. ]
  12. deps = [ "//base" ]
  13. }