chromium/third_party/cloud_authenticator/test/local_service/BUILD.gn

# Copyright 2023 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

import("//build/rust/rust_executable.gni")

rust_executable("cloud_authenticator_test_service") {
  sources = [ "src/main.rs" ]
  deps = [
    "//third_party/cloud_authenticator/cbor",
    "//third_party/cloud_authenticator/crypto",
    "//third_party/cloud_authenticator/handshake",
    "//third_party/cloud_authenticator/processor",
    "//third_party/rust/base64/v0_13:lib",
    "//third_party/rust/hex/v0_4:lib",
  ]
  testonly = true
}