fix build error

Signed-off-by: yangjian <jianyang@bestechnic.com>
Change-Id: If1d7c0abc8b82da1df5290dd2b6b1b6067e4fca4
This commit is contained in:
yangjian
2023-07-12 21:15:24 +08:00
parent ead6bbb0db
commit b8e2e0071c
3 changed files with 3 additions and 14 deletions
+2 -1
View File
@@ -33,7 +33,6 @@ hdf_driver("ui_adapter") {
public_deps = [ "//foundation/arkui/ui_lite:ui" ]
if (bes_ace_enable) {
defines = [ "ENABLE_ACE" ]
public_deps += [ "//foundation/arkui/ace_engine_lite/frameworks:ace_lite" ]
}
include_dirs = [
@@ -41,5 +40,7 @@ hdf_driver("ui_adapter") {
"//drivers/peripheral/base",
"//foundation/arkui/ui_lite/frameworks",
"//third_party/freetype/include",
"//foundation/arkui/ace_engine_lite/frameworks/include/base/",
"//foundation/arkui/ace_engine_lite/interfaces/inner_api/builtin/jsi",
]
}
@@ -64,6 +64,7 @@ INC_DIR += -I$(EXTERN_ROOT_PATH)kernel/liteos_m/arch/arm/cortex-m33/gcc/NTZ/
INC_DIR += -I$(EXTERN_ROOT_PATH)third_party/bounds_checking_function/include/
INC_DIR += -I$(EXTERN_ROOT_PATH)kernel/liteos_m/components/exchook/
INC_DIR += -I$(EXTERN_ROOT_PATH)kernel/liteos_m/components/backtrace/
INC_DIR += -I$(EXTERN_ROOT_PATH)kernel/liteos_m/arch/arm/common/
ccflags-y += $(INC_DIR)
else
INC_DIR = kernel/include
-13
View File
@@ -25,20 +25,7 @@ config("mbedtls_config") {
]
}
lite_library("mbedtls_static") {
target_type = "static_library"
public_configs = [ ":mbedtls_config" ]
sources = MBEDTLS_SOURCES - [ "$MBEDTLSDIR/library/entropy_poll.c" ] +
[ "library/entropy_poll.c" ] + [ "$MBEDTLSDIR/library/debug.c" ]
}
group("mbedtls") {
public_deps = [ ":mbedtls_static" ]
public_configs = [ ":mbedtls_config" ]
}
ndk_lib("mbedtls_ndk") {
lib_extension = ".a"
deps = [ ":mbedtls" ]
head_files = [ "include" ]
}