| # 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("icd_load_src") { | |
| testonly = true | |
| sources = [ | |
| "icd_load.cc", | |
| "icd_load.h", | |
| ] | |
| public_deps = [ | |
| "//src/lib/fxl/test:test_settings", | |
| "//third_party/googletest:gtest", | |
| ] | |
| public_deps += [ "//src/lib/vulkan" ] | |
| } | |
| executable("icd_load") { | |
| testonly = true | |
| deps = [ ":icd_load_src" ] | |
| } |