[gn build] Remove unnecessary include_dirs

These are already part of crt_code.
This commit is contained in:
Arthur Eubanks 2022-01-26 15:40:30 -08:00
parent bdb7837481
commit 0a4bbdabe3
4 changed files with 1 additions and 13 deletions

View File

@ -102,9 +102,6 @@ target(asan_target_type, "asan") {
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
# crt_code?
cflags = [ "-fno-builtin" ]

View File

@ -39,9 +39,6 @@ static_library("msan") {
"msan_thread.h",
]
# To be able to include sanitizer_common.
include_dirs = [ ".." ]
# FIXME: have SANITIZER_COMMON_CFLAGS thingy? should fno-builtin be in
# crt_code?
cflags = [ "-fno-builtin" ]

View File

@ -25,10 +25,7 @@ static_library("profile") {
cflags += [ "/wd4221" ]
}
include_dirs = [
"..",
"../../include",
]
include_dirs = [ "../../include" ]
sources = [
"GCDAProfiling.c",

View File

@ -128,9 +128,6 @@ target(tsan_target_type, "rtl") {
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
# crt_code?
cflags += [ "-fno-builtin" ]