blob: 4c6167fe2dea3d763ab5a8c3d6c04fd12357bdad [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/package.gni")
executable("vulkaninfo_bin") {
output_name = "vulkaninfo"
sources = [
"vulkaninfo.c",
]
deps = [
"//third_party/vulkan_loader_and_validation_layers:vulkan",
]
}
package("vulkaninfo") {
system_image = true
deps = [
":vulkaninfo_bin",
]
binaries = [
{ name = "vulkaninfo" },
]
}