[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" ] 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" ]

View File

@ -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" ]

View File

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

View File

@ -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" ]