• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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# external glslang OGLCompiler build
15
16import("//build/ohos.gni")
17import("//third_party/vk-gl-cts/vk_gl_cts.gni")
18
19config("OGLCompiler_config") {
20  cflags_cc = deqp_common_cflags_cc
21
22  cflags_cc -= [
23    "-frtti",
24    "-fexceptions",
25  ]
26
27  cflags_cc += [
28    "-fPIC",
29    "-Wno-reorder",
30    "-fno-rtti",
31    "-fno-exceptions",
32  ]
33
34  defines = deqp_common_defines
35  defines -= [
36    "DEQP_SUPPORT_DRM=0",
37    "DEQP_TARGET_NAME=\"Default\"",
38  ]
39
40  defines += [
41    "ENABLE_HLSL",
42    "ENABLE_OPT=0",
43    "GLSLANG_OSINCLUDE_UNIX",
44  ]
45}
46
47ohos_source_set("OGLCompiler_source") {
48  sources = [ "//third_party/glslang/OGLCompilersDLL/InitializeDll.cpp" ]
49  include_dirs = [ "//third_party/zlib/src" ]
50  include_dirs += deqp_common_include_dirs
51
52  deps = [
53    #"//third_party/glslang/glslang:libdeqp_glslang",
54  ]
55
56  configs = [ ":OGLCompiler_config" ]
57}
58
59ohos_static_library("libdeqp_OGLCompiler") {
60  deps = [ ":OGLCompiler_source" ]
61  part_name = "graphic_2d"
62  subsystem_name = "graphic"
63}
64