(self, argv)
| 807 | self.populate_configs(arches, modes, targets, tests, clean) |
| 808 | |
| 809 | def parse_arguments(self, argv): |
| 810 | if len(argv) == 0: |
| 811 | print_help_and_exit() |
| 812 | if len(argv) >= 2 and argv[0] == "args" and os.path.exists(argv[1]): |
| 813 | code = _call(f"gn args {argv[1]}") |
| 814 | sys.exit(code) |
| 815 | for argstring in argv: |
| 816 | self.parse_arg(argstring) |
| 817 | self.process_global_actions() |
| 818 | for c in self.configs: |
| 819 | self.configs[c].extend(self.global_targets, self.global_tests) |
| 820 | return self.configs |
| 821 | |
| 822 | |
| 823 | def main(argv): |
no test coverage detected