From a10f7a3d3f263f34bc8ee343108ccc2dca963eb3 Mon Sep 17 00:00:00 2001 From: Timur Valeev Date: Wed, 13 Jul 2022 09:59:38 +0300 Subject: [PATCH] Add subsystem_name and part_name to BUILD.gn Signed-off-by: Timur Valeev --- BUILD.gn | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/BUILD.gn b/BUILD.gn index 766697b4..397517c5 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -46,6 +46,8 @@ ohos_shared_library("libmimalloc_share") { ] install_enable = true + subsystem_name = "thirdparty" + part_name = "mimalloc" } ohos_static_library("libmimalloc_static") { @@ -59,4 +61,7 @@ ohos_static_library("libmimalloc_static") { "MI_TLS_PTHREAD", "mimalloc_EXPORTS" ] + + subsystem_name = "thirdparty" + part_name = "mimalloc" }