forked from OSchip/llvm-project
[gn build] Remove unnecessary include_dirs
These are already part of crt_code.
This commit is contained in:
parent
bdb7837481
commit
0a4bbdabe3
|
@ -102,9 +102,6 @@ target(asan_target_type, "asan") {
|
||||||
sources += [ "asan_interceptors_vfork.S" ]
|
sources += [ "asan_interceptors_vfork.S" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
# To be able to include sanitizer_common.
|
|
||||||
include_dirs = [ ".." ]
|
|
||||||
|
|
||||||
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
||||||
# crt_code?
|
# crt_code?
|
||||||
cflags = [ "-fno-builtin" ]
|
cflags = [ "-fno-builtin" ]
|
||||||
|
|
|
@ -39,9 +39,6 @@ static_library("msan") {
|
||||||
"msan_thread.h",
|
"msan_thread.h",
|
||||||
]
|
]
|
||||||
|
|
||||||
# To be able to include sanitizer_common.
|
|
||||||
include_dirs = [ ".." ]
|
|
||||||
|
|
||||||
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
||||||
# crt_code?
|
# crt_code?
|
||||||
cflags = [ "-fno-builtin" ]
|
cflags = [ "-fno-builtin" ]
|
||||||
|
|
|
@ -25,10 +25,7 @@ static_library("profile") {
|
||||||
cflags += [ "/wd4221" ]
|
cflags += [ "/wd4221" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
include_dirs = [
|
include_dirs = [ "../../include" ]
|
||||||
"..",
|
|
||||||
"../../include",
|
|
||||||
]
|
|
||||||
|
|
||||||
sources = [
|
sources = [
|
||||||
"GCDAProfiling.c",
|
"GCDAProfiling.c",
|
||||||
|
|
|
@ -128,9 +128,6 @@ target(tsan_target_type, "rtl") {
|
||||||
sources += [ "tsan_rtl_s390x.S" ]
|
sources += [ "tsan_rtl_s390x.S" ]
|
||||||
}
|
}
|
||||||
|
|
||||||
# To be able to include sanitizer_common.
|
|
||||||
include_dirs = [ ".." ]
|
|
||||||
|
|
||||||
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
|
||||||
# crt_code?
|
# crt_code?
|
||||||
cflags += [ "-fno-builtin" ]
|
cflags += [ "-fno-builtin" ]
|
||||||
|
|
Loading…
Reference in New Issue