# 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/components.gni") | |
import("//build/rust/rustc_test.gni") | |
rustc_test("fidl_table_validation_tests_bin") { | |
edition = "2021" | |
deps = [ | |
"//src/lib/fidl/rust/fidl", | |
"//src/lib/fidl_table_validation", | |
] | |
sources = [ "src/lib.rs" ] | |
} | |
fuchsia_unittest_package("fidl_table_validation_tests") { | |
deps = [ ":fidl_table_validation_tests_bin" ] | |
} |