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_fill_images") { 9 include_dirs = [ 10 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage", 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/clFillImage/main.cpp", 15 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_1D.cpp", 16 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_1D_array.cpp", 17 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_2D.cpp", 18 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_2D_array.cpp", 19 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_3D.cpp", 20 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_fill_generic.cpp", 21 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/clFillImage/test_loops.cpp", 22 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/images/common.cpp", 23 ] 24} 25