blob: 6245dcd4e7fadf97a541e6e8be522c42e37c5970 [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("//build/test/test_package.gni")
rustc_library("fidl_table_validation_tests_bin") {
with_unit_tests = true
edition = "2018"
deps = [
"//src/lib/fidl_table_validation",
]
}
test_package("fidl_table_validation_tests") {
deps = [
":fidl_table_validation_tests_bin",
]
tests = [
{
name = "fidl_table_validation_tests_bin_lib_test"
dest = "fidl_table_validation_tests"
},
]
}