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 5 include_rules = [ 6 "-src", 7 "-include", 8 "+src/trap-handler", 9 ] 10 11 specific_include_rules = { 12 "trap-handler.h": [ 13 "+src/base/build_config.h", 14 "+src/globals.h", 15 "+src/flags.h", 16 ] 17 } 18