blob: 0557312a8558f8bc078b8e9a4a698720d6dc74ab [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/rust/rustc_library.gni")
import("//src/sys/build/components.gni")
rustc_library("cstr") {
with_unit_tests = true
edition = "2018"
deps = [ "//third_party/rust_crates:libc" ]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("cstr-test") {
deps = [ ":cstr_test" ]
test_specs = {
environments = [ emu_env ]
}
}
group("tests") {
testonly = true
deps = [ ":cstr-test" ]
}