From 117230eea64a9a0d0774759e2532a431771b54b1 Mon Sep 17 00:00:00 2001 From: suxiaosu007 Date: Wed, 9 Oct 2024 16:01:12 +0800 Subject: [PATCH] independent construction Signed-off-by: suxiaosu007 --- codec/v2_0/BUILD.gn | 4 ++-- codec/v3_0/BUILD.gn | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/codec/v2_0/BUILD.gn b/codec/v2_0/BUILD.gn index 32499b36..c3ce9647 100644 --- a/codec/v2_0/BUILD.gn +++ b/codec/v2_0/BUILD.gn @@ -11,9 +11,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("../../../hdf_core/adapter/uhdf2/hdi.gni") +import("//build/config/components/hdi/hdi.gni") if (defined(ohos_lite)) { - group("libcodec_proxy_2.0") { + ohos_shared_library("libcodec_proxy_2.0") { deps = [] public_configs = [] } diff --git a/codec/v3_0/BUILD.gn b/codec/v3_0/BUILD.gn index ab0494da..1ec67ee3 100644 --- a/codec/v3_0/BUILD.gn +++ b/codec/v3_0/BUILD.gn @@ -11,9 +11,9 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("../../../hdf_core/adapter/uhdf2/hdi.gni") +import("//build/config/components/hdi/hdi.gni") if (defined(ohos_lite)) { - group("libcodec_proxy_3.0") { + ohos_shared_library("libcodec_proxy_3.0") { deps = [] public_configs = [] } -- Gitee