blob: 8a956ffdcc0e17ff4ef5c15df716ecfa21eed996 [file] [log] [blame]
# Copyright 2017 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("//src/sys/build/components.gni")
executable("vkpriority_bin") {
testonly = true
output_name = "vkpriority"
sources = [
"main.cc",
"vkpriority.cc",
]
public_deps = [
"//src/lib/fxl/test:test_settings",
"//src/lib/vulkan",
"//third_party/googletest:gtest",
]
}
fuchsia_component("vkpriority_cmp") {
testonly = true
component_name = "vkpriority"
deps = [
":vkpriority_bin",
"//src/lib/vulkan:image-pipe-swapchain-fb",
"//src/lib/vulkan:validation-layers",
]
manifest = "meta/vkpriority.cmx"
}
fuchsia_test_package("vkpriority-pkg") {
package_name = "vkpriority"
test_components = [ ":vkpriority_cmp" ]
}
group("vkpriority") {
testonly = true
deps = [ ":vkpriority-pkg" ]
}