chromium/third_party/cloud_authenticator/cbor/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_static_library.gni")

rust_static_library("cbor") {
  crate_name = "cbor"
  sources = [ "src/lib.rs" ]
  deps = [ "//third_party/rust/bytes/v1:lib" ]
  no_chromium_prelude = true
  testonly = true
}