From 984bf3dc9df20345dc62ee65af0674e9ed1ae256 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B1=91=E5=B1=91=E5=B1=91?= Date: Mon, 8 Sep 2025 21:27:49 +0800 Subject: [PATCH] update gn file MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: 屑屑屑 --- frameworks/innerkitsimpl/egl_image/BUILD.gn | 1 + .../egl_image/post_proc.versionscript | 20 +++++++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 frameworks/innerkitsimpl/egl_image/post_proc.versionscript diff --git a/frameworks/innerkitsimpl/egl_image/BUILD.gn b/frameworks/innerkitsimpl/egl_image/BUILD.gn index b452adcf1..8ab9f9929 100644 --- a/frameworks/innerkitsimpl/egl_image/BUILD.gn +++ b/frameworks/innerkitsimpl/egl_image/BUILD.gn @@ -103,6 +103,7 @@ if (!use_clang_ios && !use_clang_android) { "skia:skia_canvaskit", ] + version_script = "post_proc.versionscript" innerapi_tags = [ "platformsdk" ] subsystem_name = "multimedia" part_name = "image_framework" diff --git a/frameworks/innerkitsimpl/egl_image/post_proc.versionscript b/frameworks/innerkitsimpl/egl_image/post_proc.versionscript new file mode 100644 index 000000000..0e48cb91c --- /dev/null +++ b/frameworks/innerkitsimpl/egl_image/post_proc.versionscript @@ -0,0 +1,20 @@ +# Copyright (c) 2025 Huawei Device Co., Ltd.. All rights reserved. +# 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. + +1.0 { + global: + *PixelMapProgramManager*; + *PixelMapGLPostProcProgram*; + local: + *; +}; \ No newline at end of file -- Gitee