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("//third_party/OpenCL-CTS/gn/angle_ocl_cts.gni") 6 7ocl_cts_source_set("integer_ops") { 8 include_dirs = 9 [ "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops" ] 10 sources = [ 11 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/main.cpp", 12 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_abs.cpp", 13 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_absdiff.cpp", 14 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_add_sat.cpp", 15 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_extended_bit_ops_extract.cpp", 16 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_extended_bit_ops_insert.cpp", 17 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_extended_bit_ops_reverse.cpp", 18 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_int_basic_ops.cpp", 19 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_integer_dot_product.cpp", 20 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_integers.cpp", 21 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_intmad24.cpp", 22 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_intmul24.cpp", 23 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_popcount.cpp", 24 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_sub_sat.cpp", 25 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_unary_ops.cpp", 26 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/test_upsample.cpp", 27 "$angle_root/third_party/OpenCL-CTS/src/test_conformance/integer_ops/verification_and_generation_functions.cpp", 28 ] 29} 30