1# Copyright 2024 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") 6import("//third_party/OpenCL-CTS/gn/angle_ocl_cts.gni") 7 8ocl_cts_source_set("cl_read_write_images") { 9 include_dirs = [ 10 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage", 11 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/", 12 ] 13 sources = [ 14 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/main.cpp", 15 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_loops.cpp", 16 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_read_1D.cpp", 17 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_read_1D_array.cpp", 18 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_read_2D.cpp", 19 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_read_2D_array.cpp", 20 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clReadWriteImage/test_read_3D.cpp", 21 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/common.cpp", 22 ] 23} 24