From 621fff59209a2356532fb3675f02338ae87e41a2 Mon Sep 17 00:00:00 2001 From: huangyicong Date: Fri, 14 Jan 2022 18:22:34 +0800 Subject: [PATCH] add bundle.json Signed-off-by: huangyicong --- bundle.json | 30 ++++++++++++++++++++++++++++++ memory/bundle.json | 36 ++++++++++++++++++++++++++++++++++++ timer_task/bundle.json | 37 +++++++++++++++++++++++++++++++++++++ 3 files changed, 103 insertions(+) create mode 100644 bundle.json create mode 100644 memory/bundle.json create mode 100644 timer_task/bundle.json diff --git a/bundle.json b/bundle.json new file mode 100644 index 0000000..f0bf3d4 --- /dev/null +++ b/bundle.json @@ -0,0 +1,30 @@ +{ + "name": "@openharmony/utils_lite", + "version": "3.1.0", + "description": "Basic macro and type definitions", + "publishAs": "code-segment", + "scripts": { + "install": "DEST_PATH=${DEP_BUNDLE_BASE}/utils/native/lite && mkdir -p $DEST_PATH && cp -r ./* $DEST_PATH" + }, + "author": {}, + "repository": "", + "license": "Apache License 2.0", + "dirs": { + "utils/native/lite/include" + }, + "component": { + "name": "utils_lite", + "subsystem": "utils", + "features" :[], + "adapted_system_type": [ "standard" ], + "rom": "0KB", + "ram": "0KB", + "deps": {}, + "build": { + "sub_component": [], + "inner_kits": [], + "test": [] + } + } + } + diff --git a/memory/bundle.json b/memory/bundle.json new file mode 100644 index 0000000..f8a0533 --- /dev/null +++ b/memory/bundle.json @@ -0,0 +1,36 @@ +{ + "name": "@openharmony/memory", + "version": "3.1.0", + "description": "memory", + "publishAs": "code-segment", + "scripts": { + "install": "DEST_PATH=${DEP_BUNDLE_BASE}/utils/native/lite && mkdir -p $DEST_PATH && cp -r ./* $DEST_PATH" + }, + "author": {}, + "repository": "", + "license": "Apache License 2.0", + "dirs": { + "utils/native/lite/memory" + }, + "component": { + "name": "memory", + "subsystem": "utils", + "features" : [], + "adapted_system_type": [ "standard" ], + "rom": "", + "ram": "", + "deps": { + "thrid_party": [], + "kernel_special": {}, + "board_special": {}, + "components": [ + "utils_lite" + ] + }, + "build": { + "sub_component": [], + "inner_kits": [], + "test": [] + } + } + } diff --git a/timer_task/bundle.json b/timer_task/bundle.json new file mode 100644 index 0000000..87bb0c8 --- /dev/null +++ b/timer_task/bundle.json @@ -0,0 +1,37 @@ +{ + "name": "@openharmony/timer_task", + "version": "3.1.0", + "description": "ace timer kits", + "publishAs": "code-segment", + "scripts": { + "install": "DEST_PATH=${DEP_BUNDLE_BASE}/utils/native/lite && mkdir -p $DEST_PATH && cp -r ./* $DEST_PATH" + }, + "author": {}, + "repository": "", + "license": "Apache License 2.0", + "dirs": { + "utils/native/lite/timer_task" + }, + "component": { + "name": "timer_task", + "subsystem": "utils", + "features" : [], + "adapted_system_type": [ "standard" ], + "rom": "", + "ram": "", + "deps": { + "thrid_party": [], + "kernel_special": {}, + "board_special": {}, + "components": [ + "utils_lite" + ] + }, + "build": { + "sub_component": [], + "inner_kits": [], + "test": [] + } + } + } + -- GitLab