# 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("crypto") {
crate_name = "crypto"
sources = [ "src/lib.rs" ]
deps = [
"//third_party/boringssl:bssl_crypto",
]
features = [ "bssl" ]
no_chromium_prelude = true
testonly = true
}