blob: 1cd1c619ff5c9f301262c81289c493f4bf9167da [file] [log] [blame]
# Copyright 2018 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("//build/go/go_binary.gni")
import("//build/go/go_library.gni")
import("//build/go/toolchain.gni")
import("//build/package.gni")
import("//third_party/vulkan_loader_and_validation_layers/layers/layers.gni")
package("vulkan_is_supported") {
testonly = true
deps = [
"vulkan_is_supported",
]
binary = "vulkan_is_supported"
meta = [
{
path = rebase_path("meta/vulkan_is_supported.cmx")
dest = "vulkan_is_supported.cmx"
},
]
public_deps = vulkan_validation_layers.public_deps
loadable_modules = vulkan_validation_layers.loadable_modules
resources = vulkan_validation_layers.resources
}
package("scenic_benchmarks") {
testonly = true
deps = [
":process_scenic_trace",
]
binaries = [
{
name = "process_scenic_trace"
},
]
meta = [
{
path = rebase_path("meta/scenic_benchmarks.cmx")
dest = "scenic_benchmarks.cmx"
},
]
resources = [
{
path = rebase_path("scenic_benchmark.sh")
dest = "scenic_benchmark.sh"
},
]
}
go_library("process_scenic_trace_lib") {
name = "process_scenic_trace"
deps = [
"//garnet/go/src/benchmarking",
]
}
go_binary("process_scenic_trace") {
output_name = "process_scenic_trace"
gopackage = "process_scenic_trace"
deps = [
":process_scenic_trace_lib",
]
}