# Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd. # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. import("//test/xts/acts/graphic/vkgl/comm.gni") config("deqp_platform_ohos_config") { cflags_cc = deqp_common_cflags_cc cflags_cc += [ # "-Wno-conversion", # "-Wno-unused-function", "-Wno-unused-parameter", ] defines = deqp_common_defines # defines -=["DE_PTR_SIZE=8"] #defines += [ # "DE_PTR_SIZE=4", # "_XOPEN_SOURCE=600", # ] } ohos_static_library("libdeqpgles31func0025") { sources = common_src sources += [ "../Deqpgles31BaseFunc.cpp" ] include_dirs = common_include deps = common_depends external_deps = [ "hilog_native:libhilog", "multimedia_image_framework:image_native", ] configs = [ ":deqp_platform_ohos_config" ] } ohos_moduletest_suite("ActsDeqpgles31TestSuite0025") { sources = [ "../ActsDeqpgles310025TestSuite.cpp", "../functional/Deqpgles31buffer_variable_randomTestCase.cpp", "../functional/Deqpgles31compute_named_blockTestCase.cpp", "../functional/Deqpgles31global_state_vertex_fragmentTestCase.cpp", "../functional/Deqpgles31global_state_vertex_geometry_fragmentTestCase.cpp", "../functional/Deqpgles31global_state_vertex_tessellation_fragmentTestCase.cpp", "../functional/Deqpgles31global_state_vertex_tessellation_geometry_fragmentTestCase.cpp", "../functional/Deqpgles31image_image2dTestCase.cpp", "../functional/Deqpgles31image_image3dTestCase.cpp", "../functional/Deqpgles31layout_binding_ssboTestCase.cpp", "../functional/Deqpgles31layout_binding_uboTestCase.cpp", "../functional/Deqpgles31named_block_sizedTestCase.cpp", "../functional/Deqpgles31named_block_unsizedTestCase.cpp", "../functional/Deqpgles31negative_ssboTestCase.cpp", "../functional/Deqpgles31negative_uboTestCase.cpp", "../functional/Deqpgles31primitive_bounding_box_state_queryTestCase.cpp", "../functional/Deqpgles31sampler_sampler2dTestCase.cpp", "../functional/Deqpgles31sampler_sampler3dTestCase.cpp", "../functional/Deqpgles31separable_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31separable_geometry_named_blockTestCase.cpp", "../functional/Deqpgles31separable_tess_ctrl_named_blockTestCase.cpp", "../functional/Deqpgles31separable_tess_eval_named_blockTestCase.cpp", "../functional/Deqpgles31separable_vertex_named_blockTestCase.cpp", "../functional/Deqpgles31shader_storage_block_active_variablesTestCase.cpp", "../functional/Deqpgles31shader_storage_block_buffer_bindingTestCase.cpp", "../functional/Deqpgles31shader_storage_block_buffer_data_sizeTestCase.cpp", "../functional/Deqpgles31shader_storage_block_name_lengthTestCase.cpp", "../functional/Deqpgles31shader_storage_block_resource_listTestCase.cpp", "../functional/Deqpgles31tessellation_set_per_draw_vertex_tessellation_fragmentTestCase.cpp", "../functional/Deqpgles31top_level_array_size_block_arrayTestCase.cpp", "../functional/Deqpgles31top_level_array_size_named_blockTestCase.cpp", "../functional/Deqpgles31top_level_array_size_unnamed_blockTestCase.cpp", "../functional/Deqpgles31top_level_array_stride_block_arrayTestCase.cpp", "../functional/Deqpgles31top_level_array_stride_named_blockTestCase.cpp", "../functional/Deqpgles31top_level_array_stride_unnamed_blockTestCase.cpp", "../functional/Deqpgles31type_basic_typeTestCase.cpp", "../functional/Deqpgles31vertex_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_fragment_only_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_fragment_only_vertex_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_geo_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_geo_fragment_only_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_geo_fragment_only_geo_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_geo_fragment_only_vertex_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_fragment_only_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_fragment_only_tess_ctrl_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_fragment_only_tess_eval_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_fragment_only_vertex_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_only_fragment_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_only_geo_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_only_tess_ctrl_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_only_tess_eval_named_blockTestCase.cpp", "../functional/Deqpgles31vertex_tess_geo_fragment_only_vertex_named_blockTestCase.cpp", ] include_dirs = [ "//test/xts/acts/graphic/vkgl/src" ] deps = [ ":libdeqpgles31func0025" ] cflags = [ "-Wno-error" ] }