From 59ce07000d3d8fb07079b752f3028cbf31cadcb8 Mon Sep 17 00:00:00 2001 From: wangkai Date: Mon, 12 Jun 2023 17:20:07 +0800 Subject: [PATCH] =?UTF-8?q?=E9=83=A8=E4=BB=B6=E5=8C=96=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: wangkai --- bundle.json | 29 ++++++++++++++--------------- interfaces/innerkits/BUILD.gn | 1 - interfaces/jskits/BUILD.gn | 1 - service/BUILD.gn | 5 ++--- 4 files changed, 16 insertions(+), 20 deletions(-) diff --git a/bundle.json b/bundle.json index 113b952..f5d1914 100644 --- a/bundle.json +++ b/bundle.json @@ -1,7 +1,7 @@ { "name": "@ohos/udmf", "description": "Provide unified data management service for 3rd party app", - "version": "3.1", + "version": "4.0", "license": "Apache License 2.0", "publishAs": "code-segment", "segment": { @@ -18,32 +18,31 @@ "features": [ ], "adapted_system_type": [ - "mini", - "small", "standard" ], - "rom": "2048KB", - "ram": "10240KB", + "rom": "1000KB", + "ram": "636KB", "deps": { "components": [ + "access_token", + "app_file_service", + "bounds_checking_function", + "bundle_framework", + "c_utils", + "data_object", + "datamgr_service", + "kv_store", + "multimedia_image_framework", + "os_account", "ipc", "hiviewdfx_hilog_native", - "appexecfwk_standard", - "aafwk_standard", - "safwk", "samgr", "napi", - "utils_base", "ability_base", "ability_runtime" ], "third_party": [ - "gtest_main", - "libxml2", - "libsec_shared", - "shared_icuuc", - "shared_icui18n", - "sqlite" + "gtest_main" ] }, "build": { diff --git a/interfaces/innerkits/BUILD.gn b/interfaces/innerkits/BUILD.gn index 08a612c..25657d7 100755 --- a/interfaces/innerkits/BUILD.gn +++ b/interfaces/innerkits/BUILD.gn @@ -29,7 +29,6 @@ config("udmf_client_config") { "${kv_store_path}/frameworks/common", "//third_party/libuv/include", "//third_party/node/src", - "//commonlibrary/c_utils/base/include", ] } diff --git a/interfaces/jskits/BUILD.gn b/interfaces/jskits/BUILD.gn index 2fda6d2..aae81dc 100755 --- a/interfaces/jskits/BUILD.gn +++ b/interfaces/jskits/BUILD.gn @@ -32,7 +32,6 @@ config("udmf_napi_config") { "${udmf_service_path}/include", "//third_party/libuv/include", "//third_party/node/src", - "//commonlibrary/c_utils/base/include", "${aafwk_inner_api_path}/ability_manager/include", "${aafwk_kits_path}/appkit/native/app/include/", diff --git a/service/BUILD.gn b/service/BUILD.gn index e9c193c..fb4a390 100755 --- a/service/BUILD.gn +++ b/service/BUILD.gn @@ -30,11 +30,10 @@ ohos_shared_library("udmf_server") { "${udmf_interfaces_path}/innerkits/client", "${udmf_interfaces_path}/innerkits/common", "${udmf_interfaces_path}/innerkits/data", - "//foundation/distributeddatamgr/kv_store/frameworks/common", - "//foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/include", + "${kv_store_path}/frameworks/common", + "${ddms_path}/services/distributeddataservice/framework/include", "//third_party/libuv/include", "//third_party/node/src", - "//commonlibrary/c_utils/base/include", ] sources = [ -- Gitee