1# In order to make it easier to audit the signal handler code, we use very 2# restrictive include rules to limit the amount of code that the signal handler 3# can depend on. 4 5include_rules = [ 6 "-src", 7 "-include", 8 "+src/trap-handler", 9 # Use the IMMEDIATE_CRASH() macro for crashing non-recoverably on check failure. 10 "+src/base/immediate-crash.h", 11 # Allow include/v8config.h for V8_OS_* macros. 12 "+include/v8config.h", 13] 14