blob: 900f92f457c2f9fc28a8690803a3621b7bac3fa4 [file] [log] [blame]
# Copyright 2021 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/fidl/fidl.gni")
import("//build/test.gni")
group("coding") {
testonly = true
deps = [ ":fidl_cpp_natural_coding_tests" ]
}
test("fidl_cpp_natural_coding_tests_bin") {
output_name = "fidl_cpp_natural_coding_tests"
sources = [ "natural_struct_decoding_test.cc" ]
deps = [
"//sdk/lib/stdcompat",
"//src/lib/fidl/cpp",
"//src/lib/fidl/llcpp/tests/wire_types:fidl.llcpp.types.test_cpp",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("fidl_cpp_natural_coding_tests") {
deps = [ ":fidl_cpp_natural_coding_tests_bin" ]
}