(self)
| 604 | return [] |
| 605 | |
| 606 | def get_gn_args(self): |
| 607 | # Use only substring before first '-' as the actual mode |
| 608 | mode = re.match("([^-]+)", self.mode).group(1) |
| 609 | template = ARGS_TEMPLATES[mode] |
| 610 | arch_specific = ( |
| 611 | self.get_target_cpu() + self.get_v8_target_cpu() + |
| 612 | self.get_target_os() + self.get_specialized_compiler() + |
| 613 | self.get_sandbox_flag()) |
| 614 | return template % "\n".join(arch_specific) |
| 615 | |
| 616 | def build(self): |
| 617 | path = self.path |
no test coverage detected