blob: 6a988383736c7ee185e5af49c4a20b3b9b4b2a5a [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("//garnet/lib/magma/gnbuild/magma.gni")
executable("vkpriority") {
testonly = true
sources = [
"main.cc",
"vkpriority.cc",
]
public_deps = [
"//garnet/lib/magma/src/magma_util",
"//third_party/googletest:gtest",
]
if (use_vulkan_loader_for_tests) {
public_deps +=
[ "//third_party/vulkan_loader_and_validation_layers:vulkan" ]
} else {
public_deps += [ "//garnet/lib/magma/tests/vulkan_shim" ]
}
}