1# Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. 2# Licensed under the Apache License, Version 2.0 (the "License"); 3# you may not use this file except in compliance with the License. 4# You may obtain a copy of the License at 5# 6# http://www.apache.org/licenses/LICENSE-2.0 7# 8# Unless required by applicable law or agreed to in writing, software 9# distributed under the License is distributed on an "AS IS" BASIS, 10# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11# See the License for the specific language governing permissions and 12# limitations under the License. 13 14# deqp framwork delib debase build 15 16import("//build/ohos.gni") 17import("//third_party/vk-gl-cts/vk_gl_cts.gni") 18 19config("deqp_delib_debase_config") { 20 cflags = deqp_common_cflags 21 defines = deqp_common_defines 22 defines += [ 23 "FE_DOWNWARD=0x00800000", 24 "FE_TONEAREST=0x00000000", 25 "FE_TOWARDZERO=0x00c00000", 26 "FE_UPWARD=0x00400000", 27 "_XOPEN_SOURCE=600", 28 ] 29} 30 31ohos_source_set("deqp_delib_debase_source") { 32 sources = [ 33 "//third_party/vk-gl-cts/framework/delibs/debase/deDefs.c", 34 "//third_party/vk-gl-cts/framework/delibs/debase/deFloat16.c", 35 "//third_party/vk-gl-cts/framework/delibs/debase/deFloat16Test.c", 36 "//third_party/vk-gl-cts/framework/delibs/debase/deInt32.c", 37 "//third_party/vk-gl-cts/framework/delibs/debase/deInt32Test.c", 38 "//third_party/vk-gl-cts/framework/delibs/debase/deMath.c", 39 "//third_party/vk-gl-cts/framework/delibs/debase/deMathTest.c", 40 "//third_party/vk-gl-cts/framework/delibs/debase/deMemory.c", 41 "//third_party/vk-gl-cts/framework/delibs/debase/deRandom.c", 42 "//third_party/vk-gl-cts/framework/delibs/debase/deSha1.c", 43 "//third_party/vk-gl-cts/framework/delibs/debase/deString.c", 44 ] 45 46 include_dirs = deqp_common_include_dirs 47 48 configs = [ ":deqp_delib_debase_config" ] 49} 50 51ohos_static_library("libdeqp_debase") { 52 deps = [ ":deqp_delib_debase_source" ] 53 part_name = "graphic_2d" 54 subsystem_name = "graphic" 55} 56