blob: 5b73a8a429e5fdbd1e074120192e2a637d7e7e17 [file] [log] [blame]
# Copyright 2016 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.
source_set("vkreadback_src") {
testonly = true
sources = [
"vkreadback.cc",
"vkreadback.h",
]
public_deps = [
"//src/lib/fxl/test:test_settings",
"//third_party/googletest:gtest",
]
public_deps += [ "//src/lib/vulkan" ]
}
executable("vkreadback") {
testonly = true
sources = [ "main.cc" ]
deps = [ ":vkreadback_src" ]
}
group("linux_arm64") {
testonly = true
deps = [ ":vkreadback(//build/toolchain:linux_arm64)" ]
}