blob: 49ccf1c1fb1c3403d9507d62d8b277db6f56693c [file] [log] [blame]
# Copyright 2020 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/test.gni")
executable("sysmem-version-test") {
sources = [ "sysmem-version-test.cc" ]
deps = [
"//sdk/lib/fdio",
"//sdk/lib/fidl/cpp:cpp_base",
"//zircon/system/ulib/sysmem-version",
"//zircon/system/ulib/zxtest",
]
testonly = true
# TODO(https://fxbug.dev/42176699): This target uses mutable tables which are deprecated,
# rather than builders.
configs += [ "//build/cpp:fidl-wire-deprecated-mutable-tables" ]
}
fuchsia_unittest_package("sysmem-version-test-pkg") {
package_name = "sysmem-version-test"
deps = [ ":sysmem-version-test" ]
}
group("tests") {
testonly = true
deps = [ ":sysmem-version-test-pkg" ]
}