1e5c31af7Sopenharmony_ci# Copyright (c) 2022 Shenzhen Kaihong Digital Industry Development Co., Ltd.
2e5c31af7Sopenharmony_ci# Licensed under the Apache License, Version 2.0 (the "License");
3e5c31af7Sopenharmony_ci# you may not use this file except in compliance with the License.
4e5c31af7Sopenharmony_ci# You may obtain a copy of the License at
5e5c31af7Sopenharmony_ci#
6e5c31af7Sopenharmony_ci#     http://www.apache.org/licenses/LICENSE-2.0
7e5c31af7Sopenharmony_ci#
8e5c31af7Sopenharmony_ci# Unless required by applicable law or agreed to in writing, software
9e5c31af7Sopenharmony_ci# distributed under the License is distributed on an "AS IS" BASIS,
10e5c31af7Sopenharmony_ci# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11e5c31af7Sopenharmony_ci# See the License for the specific language governing permissions and
12e5c31af7Sopenharmony_ci# limitations under the License.
13e5c31af7Sopenharmony_ci
14e5c31af7Sopenharmony_ci# deqp build
15e5c31af7Sopenharmony_ci
16e5c31af7Sopenharmony_ciimport("//build/ohos.gni")
17e5c31af7Sopenharmony_ci
18e5c31af7Sopenharmony_cigroup("deqp") {
19e5c31af7Sopenharmony_ci  deps = [
20e5c31af7Sopenharmony_ci    "//third_party/glslang:glslang",
21e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/common:libdeqp_tcutil",  #deps
22e5c31af7Sopenharmony_ci                                                                # openglcts/modules/glesext
23e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/debase:libdeqp_debase",
24e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/decpp:libdeqp_decpp",
25e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/depool:libdeqp_depool",
26e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/destream:libdeqp_destream",
27e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/dethread:libdeqp_dethread",
28e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/delibs/deutil:libdeqp_deutil",
29e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/egl/wrapper:libdeqp_eglwrapper",  #deps
30e5c31af7Sopenharmony_ci                                                                         # common
31e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/opengl:libdeqp_glutil",  #deps common rr
32e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/opengl/wrapper:libdeqp_glwrapper",
33e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/qphelper:libdeqp_qphelper",
34e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/randomshaders:libdeqp_randomshaders",  #deps
35e5c31af7Sopenharmony_ci                                                                              # common
36e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/referencerenderer:libdeqp_referencerenderer",
37e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/framework/xexml:libdeqp_xexml",
38e5c31af7Sopenharmony_ci    "//third_party/vk-gl-cts/modules:deqp_modules",
39e5c31af7Sopenharmony_ci  ]
40e5c31af7Sopenharmony_ci}
41