build:appdatamgr split to four code warehouse:

relational_store,data_share,preferences,kv_store

Signed-off-by: PaDaBoo <xuejianwu@huawei.com>
This commit is contained in:
PaDaBoo
2022-07-23 16:03:46 +08:00
parent 91a05dbbf7
commit 45129515f4
5 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -12,7 +12,7 @@
## 目录
```
//foundation/distributeddatamgr/appdatamgr/kv_store
//foundation/distributeddatamgr/kv_store
├── frameworks # 框架层代码
│ └── js # JS API的实现
│ │ └── napi # napi代码实现
@@ -34,6 +34,6 @@
- [分布式数据管理子系统](https://gitee.com/openharmony/docs/blob/master/zh-cn/readme/%E5%88%86%E5%B8%83%E5%BC%8F%E6%95%B0%E6%8D%AE%E7%AE%A1%E7%90%86%E5%AD%90%E7%B3%BB%E7%BB%9F.md)
- [**distributeddatamgr\_appdatamgr**](https://gitee.com/openharmony/distributeddatamgr_appdatamgr/blob/master/README_zh.md)
- [**distributeddatamgr\_kv_store**](https://gitee.com/openharmony/distributeddatamgr_kv_store/blob/master/README_zh.md)
- [third\_party\_sqlite](https://gitee.com/openharmony/third_party_sqlite)
+2 -2
View File
@@ -5,7 +5,7 @@
"description": "",
"publishAs": "code-segment",
"segment": {
"destPath": "foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store"
"destPath": "foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store"
},
"dirs": {},
"scripts": {},
@@ -28,7 +28,7 @@
]
},
"build": {
"sub_component": [ "//foundation/distributeddatamgr/appdatamgr/kv_store/interfaces/inner_api/kv_store" ],
"sub_component": [ "//foundation/distributeddatamgr/kv_store/interfaces/inner_api/kv_store" ],
"inner_kits": [],
"test": []
}
@@ -12,7 +12,7 @@
# limitations under the License.
import("//build/lite/config/component/lite_component.gni")
import("//foundation/distributeddatamgr/appdatamgr/kv_store/kv_store.gni")
import("//foundation/distributeddatamgr/kv_store/kv_store.gni")
if (ohos_kernel_type == "liteos_m") {
static_library("foundation_dbm_kv_store") {
sources = [ "${kv_store_native_path}/dbm_kv_store/src/kv_store_impl_hal/dbm_kv_store.c" ]
@@ -12,7 +12,7 @@
# limitations under the License.
import("//build/lite/config/component/lite_component.gni")
import("//foundation/distributeddatamgr/appdatamgr/kv_store/kv_store.gni")
import("//foundation/distributeddatamgr/kv_store/kv_store.gni")
declare_args() {
enable_ohos_utils_native_lite_kv_store_use_posix_kv_api = true
+1 -1
View File
@@ -11,7 +11,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
kv_store_base_path = "//foundation/distributeddatamgr/appdatamgr/kv_store"
kv_store_base_path = "//foundation/distributeddatamgr/kv_store"
kv_store_native_path = "${kv_store_base_path}/frameworks/native"