1# Copyright 2021 The ANGLE Project Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5import("../../../gni/angle.gni") 6 7angle_source_set("angle_dma_buf") { 8 sources = [ 9 "dma_buf_utils.cpp", 10 "dma_buf_utils.h", 11 ] 12 13 deps = [ "$angle_root:angle_common" ] 14 15 if (angle_enable_vulkan) { 16 defines = [ "ANGLE_ENABLE_VULKAN" ] 17 public_deps = [ "$angle_vulkan_headers_dir:vulkan_headers" ] 18 } 19} 20