blob: 2b5350fd86ccc190997369c2f2c0f8695b11ef4a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
assert(is_fuchsia)
import("//build/toolchain/toolchain.gni")
import("//third_party/fuchsia-sdk/sdk/build/fuchsia_sdk_pkg.gni")
group("vulkan_base") {
data_deps = [
"sdk/pkg/vulkan",
"sdk/pkg/vulkan_layers:VkLayer_image_pipe_swapchain",
]
}
group("vulkan_validation") {
data_deps = [ "sdk/pkg/vulkan_layers:VkLayer_khronos_validation" ]
}
|