blob: 214b44acf273611093852ae31c83a1335cdfd909 [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("vkloop") {
testonly = true
sources = [
"main.cc",
"vkloop.cc",
]
deps = [
"//garnet/lib/magma/fidl",
"//garnet/lib/magma/include:magma_abi",
"//zircon/public/lib/fdio",
]
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" ]
}
}