From 3cfa54a99f9e32469ecc27b926f06ad17bdff0df Mon Sep 17 00:00:00 2001 From: yangming_ha Date: Thu, 16 Sep 2021 00:10:13 -0700 Subject: [PATCH] remove lite_component template Signed-off-by: yangming_ha --- BUILD.gn | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/BUILD.gn b/BUILD.gn index 86d4eb3..1657113 100755 --- a/BUILD.gn +++ b/BUILD.gn @@ -11,17 +11,16 @@ # See the License for the specific language governing permissions and # limitations under the License. -import("//build/lite/config/subsystem/lite_subsystem.gni") import("//build/lite/ndk/ndk.gni") -lite_subsystem("utils") { - subsystem_components = [ +group("utils") { + deps = [ "kv_store:kv_store", "os_dump:utils_os_dump", ] if (ohos_kernel_type == "liteos_m") { - subsystem_components += [ "file:file" ] + deps += [ "file:file" ] } }