| # In order to make it easier to audit the signal handler code, we use very | |
| # restrictive include rules to limit the amount of code that the signal handler | |
| # can depend on. | |
| include_rules = [ | |
| "-src", | |
| "-include", | |
| "+src/trap-handler", | |
| # Use the IMMEDIATE_CRASH() macro for crashing non-recoverably on check failure. | |
| "+src/base/immediate-crash.h", | |
| # Allow include/v8config.h for V8_OS_* macros. | |
| "+include/v8config.h", | |
| ] |