blob: bd43c98df35ac3dd59af07c77a0fea68481b8beb [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_test.gni")
import("//build/test/test_package.gni")
rustc_test("fidl_table_validation_tests_bin") {
edition = "2018"
deps = [
"//src/lib/fidl/rust/fidl",
"//src/lib/fidl_table_validation",
]
}
test_package("fidl_table_validation_tests") {
deps = [ ":fidl_table_validation_tests_bin" ]
tests = [
{
name = "fidl_table_validation_tests_bin"
dest = "fidl_table_validation_tests"
},
]
}