blob: f941b9901d864e7289c9d711ce9f6c221341baf0 [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")
executable("va-test-bin") {
testonly = true
sources = [ "va-test.cc" ]
deps = [
"//src/graphics/lib/magma/src/libmagma",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
"//third_party/intel/media-driver/fuchsia:va-intel",
"//zircon/system/ulib/zx",
]
}
fuchsia_test_component("va-test-component") {
deps = [ ":va-test-bin" ]
manifest = "meta/va-test.cmx"
}
fuchsia_test_package("va-test") {
test_components = [ ":va-test-component" ]
}