!183 部件名 和 仓名修改 distributeddatamgr_objectstore ->distributeddatamgr_data_object

Merge pull request !183 from altairStar/master
This commit is contained in:
openharmony_ci
2022-07-29 03:56:02 +00:00
committed by Gitee
5 changed files with 19 additions and 19 deletions
+10 -10
View File
@@ -1,10 +1,10 @@
{
"name": "@ohos/distributeddatamgr_objectstore",
"name": "@ohos/distributeddatamgr_data_object",
"version": "",
"description": "The distributed data object management framework is an object-oriented in-memory data management framework",
"homePage": "https://gitee.com/openharmony",
"license": "Apache V2",
"repository": "https://gitee.com/openharmony/distributeddatamgr_objectstore ",
"repository": "https://gitee.com/openharmony/distributeddatamgr_data_object ",
"domain": "os",
"language": "",
"publishAs": "code-segment",
@@ -28,10 +28,10 @@
}
],
"segment": {
"destPath": "foundation/distributeddatamgr/objectstore"
"destPath": "foundation/distributeddatamgr/data_object"
},
"component": {
"name": "distributeddataobject",
"name": "data_object",
"subsystem": "distributeddatamgr",
"syscap": [
"SystemCapability.DistributedDataManager.DataObject.DistributedObject"
@@ -62,25 +62,25 @@
},
"build": {
"sub_component": [
"//foundation/distributeddatamgr/objectstore/interfaces/jskits:build_module"
"//foundation/distributeddatamgr/data_object/interfaces/jskits:build_module"
],
"inner_kits": [
{
"name": "//foundation/distributeddatamgr/objectstore/interfaces/innerkits:distributeddataobject_impl",
"name": "//foundation/distributeddatamgr/data_object/interfaces/innerkits:distributeddataobject_impl",
"header": {
"header_files": [
"distributed_object.h",
"distributed_objectstore.h",
"objectstore_errors.h"
],
"header_base": "//foundation/distributeddatamgr/objectstore/interfaces/innerkits"
"header_base": "//foundation/distributeddatamgr/data_object/interfaces/innerkits"
}
}
],
"test": [
"//foundation/distributeddatamgr/objectstore/frameworks/innerkitsimpl/test/unittest:unittest",
"//foundation/distributeddatamgr/objectstore/frameworks/jskitsimpl/test/unittest:unittest",
"//foundation/distributeddatamgr/objectstore/frameworks/innerkitsimpl/test/fuzztest/objectstore_fuzzer:fuzztest"
"//foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/test/unittest:unittest",
"//foundation/distributeddatamgr/data_object/frameworks/jskitsimpl/test/unittest:unittest",
"//foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/test/fuzztest/objectstore_fuzzer:fuzztest"
]
}
}
@@ -24,14 +24,14 @@ config("module_private_config") {
ohos_fuzztest("ObjectStoreFuzzTest") {
module_out_path = "data_object/impl"
fuzz_config_file = "//foundation/distributeddatamgr/objectstore/frameworks/innerkitsimpl/test/fuzztest/objectstore_fuzzer"
fuzz_config_file = "//foundation/distributeddatamgr/data_object/frameworks/innerkitsimpl/test/fuzztest/objectstore_fuzzer"
sources = [ "objectstore_fuzzer.cpp" ]
configs = [ ":module_private_config" ]
external_deps = [
"distributeddataobject:distributeddataobject_impl",
"data_object:distributeddataobject_impl",
"hilog_native:libhilog",
]
}
@@ -29,7 +29,7 @@ ohos_unittest("NativeObjectStoreTest") {
configs = [ ":module_private_config" ]
external_deps = [
"distributeddataobject:distributeddataobject_impl",
"data_object:distributeddataobject_impl",
"hilog_native:libhilog",
]
+3 -3
View File
@@ -13,7 +13,7 @@
import("//build/ohos.gni")
config("objectstore_config") {
visibility = [ "//foundation/distributeddatamgr/objectstore:*" ]
visibility = [ "//foundation/distributeddatamgr/data_object:*" ]
cflags = [ "-DHILOG_ENABLE" ]
@@ -34,7 +34,7 @@ config("objectstore_public_config") {
}
ohos_shared_library("distributeddataobject_impl") {
part_name = "distributeddataobject"
part_name = "data_object"
sources = [
"../../frameworks/innerkitsimpl/src/adaptor/client_adaptor.cpp",
"../../frameworks/innerkitsimpl/src/adaptor/distributed_object_impl.cpp",
@@ -74,5 +74,5 @@ ohos_shared_library("distributeddataobject_impl") {
]
public_configs = [ ":objectstore_public_config" ]
relative_install_dir = "module/data"
subsystem_name = "distributeddataobject"
subsystem_name = "distributeddatamgr"
}
+3 -3
View File
@@ -89,7 +89,7 @@ gen_js_obj("distributed_data_object_abc") {
}
ohos_shared_library("distributeddataobject") {
part_name = "distributeddataobject"
part_name = "data_object"
sources = [
"../../frameworks/jskitsimpl/src/adaptor/js_distributedobject.cpp",
"../../frameworks/jskitsimpl/src/adaptor/js_distributedobjectstore.cpp",
@@ -109,8 +109,8 @@ ohos_shared_library("distributeddataobject") {
":distributed_data_object_js",
"//foundation/ability/ability_runtime/frameworks/native/ability/native:abilitykit_native",
"//foundation/ability/ability_runtime/frameworks/native/appkit:app_context",
"//foundation/distributeddatamgr/data_object/interfaces/innerkits:distributeddataobject_impl",
"//foundation/distributeddatamgr/distributeddatamgr/services/distributeddataservice/libs/distributeddb:distributeddb",
"//foundation/distributeddatamgr/objectstore/interfaces/innerkits:distributeddataobject_impl",
"//third_party/bounds_checking_function:libsec_static",
"//third_party/libuv:uv",
]
@@ -128,5 +128,5 @@ ohos_shared_library("distributeddataobject") {
public_configs = [ ":objectstore_public_config" ]
relative_install_dir = "module/data"
subsystem_name = "distributeddataobject"
subsystem_name = "distributeddatamgr"
}