blob: dfac6825b98e66e776b7c64b41251fd6aa78a2d3 [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("//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/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" ]
}