use top third_party
Change-Id: I382b10ef7a6adc328777349bce142e58895f7c8d
This commit is contained in:
parent
b8cd812303
commit
4d556fbe90
|
@ -34,6 +34,6 @@ static_library("backtrace") {
|
|||
"../../kernel/include",
|
||||
"../../kernel/arch/include",
|
||||
"../../utils",
|
||||
"../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -34,6 +34,6 @@ static_library("cpup") {
|
|||
"../../kernel/include",
|
||||
"../../kernel/arch/include",
|
||||
"../../utils",
|
||||
"../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -36,6 +36,6 @@ static_library("exchook") {
|
|||
"../../kernel/arch/include",
|
||||
"../../kernel/include",
|
||||
"../../utils",
|
||||
"../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -29,10 +29,10 @@
|
|||
|
||||
static_library("fatfs") {
|
||||
sources = [
|
||||
"../../../third_party/FatFs/source/diskio.c",
|
||||
"../../../third_party/FatFs/source/ff.c",
|
||||
"../../../third_party/FatFs/source/ffsystem.c",
|
||||
"../../../third_party/FatFs/source/ffunicode.c",
|
||||
"//third_party/FatFs/source/diskio.c",
|
||||
"//third_party/FatFs/source/ff.c",
|
||||
"//third_party/FatFs/source/ffsystem.c",
|
||||
"//third_party/FatFs/source/ffunicode.c",
|
||||
"fatfs.c",
|
||||
"fs.c",
|
||||
]
|
||||
|
@ -43,7 +43,7 @@ static_library("fatfs") {
|
|||
"../../../utils",
|
||||
"../../../kal/cmsis",
|
||||
"../../../kal/posix/include",
|
||||
"../../../third_party/bounds_checking_function/include",
|
||||
"../../../third_party/FatFs/source/",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
"//third_party/FatFs/source/",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -31,8 +31,8 @@ static_library("cmsis") {
|
|||
sources = [ "cmsis_liteos2.c" ]
|
||||
|
||||
include_dirs = [
|
||||
"../../third_party/bounds_checking_function/include",
|
||||
"../../third_party/cmsis/CMSIS/RTOS2/Include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
"//third_party/cmsis/CMSIS/RTOS2/Include",
|
||||
"../../kernel/include",
|
||||
"../../kernel/arch/include",
|
||||
"../../utils",
|
||||
|
|
|
@ -45,6 +45,6 @@ static_library("posix") {
|
|||
"../../kernel/arch/include",
|
||||
"../../kernel/include",
|
||||
"../../utils",
|
||||
"../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -47,7 +47,7 @@ static_library("kernel") {
|
|||
"../components/cpup",
|
||||
"../components/exchook",
|
||||
"../utils",
|
||||
"../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
|
||||
if ("$board_cpu" == "cortex-m3") {
|
||||
|
|
|
@ -40,6 +40,6 @@ static_library("arch") {
|
|||
"../../../../../kernel/arch/include",
|
||||
"../../../../../kernel/include",
|
||||
"../../../../../utils",
|
||||
"../../../../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -41,6 +41,6 @@ static_library("arch") {
|
|||
"../../../../../kernel/arch/include",
|
||||
"../../../../../kernel/include",
|
||||
"../../../../../utils",
|
||||
"../../../../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -40,6 +40,6 @@ static_library("arch") {
|
|||
"../../../../../kernel/arch/include",
|
||||
"../../../../../kernel/include",
|
||||
"../../../../../utils",
|
||||
"../../../../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -41,6 +41,6 @@ static_library("arch") {
|
|||
"../../../../../kernel/include",
|
||||
"../../../../../utils",
|
||||
"asm",
|
||||
"../../../../../third_party/bounds_checking_function/include",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -36,6 +36,7 @@ static_library("utils") {
|
|||
include_dirs = [
|
||||
"../kernel/include",
|
||||
"../kernel/arch/include",
|
||||
"../third_party/bounds_checking_function/include",
|
||||
".",
|
||||
"//third_party/bounds_checking_function/include",
|
||||
]
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue