blob: 140d65cd45c785a6ab06960c3a0451cbf35e6bcc [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" ]
}