Lines Matching refs:bot_cfg
42 def is_android(bot_cfg): argument
44 return ('Android' in bot_cfg.get('extra_config', '') or
45 bot_cfg.get('os') == 'Android')
47 def is_chromeos(bot_cfg): argument
48 return ('CrOS' in bot_cfg.get('extra_config', '') or
49 bot_cfg.get('os') == 'ChromeOS')
51 def is_cmake(bot_cfg): argument
52 return 'CMake' in bot_cfg.get('extra_config', '')
54 def is_ios(bot_cfg): argument
55 return ('iOS' in bot_cfg.get('extra_config', '') or
56 bot_cfg.get('os') == 'iOS')
59 def is_valgrind(bot_cfg): argument
60 return 'Valgrind' in bot_cfg.get('extra_config', '')
63 def is_xsan(bot_cfg): argument
64 return (bot_cfg.get('extra_config') == 'ASAN' or
65 bot_cfg.get('extra_config') == 'MSAN' or
66 bot_cfg.get('extra_config') == 'TSAN')
92 self.bot_cfg = self.spec['builder_cfg']
93 self.is_trybot = self.bot_cfg['is_trybot']
100 self.flavor = self.get_flavor(self.bot_cfg)
121 def get_flavor(self, bot_cfg): argument
123 if is_android(bot_cfg):
125 elif is_chromeos(bot_cfg):
127 elif is_cmake(bot_cfg):
129 elif is_ios(bot_cfg):
131 elif is_valgrind(bot_cfg):
133 elif is_xsan(bot_cfg):
135 elif bot_cfg.get('configuration') == CONFIG_COVERAGE: