Gets the output path for a file given the toolchain, rule and output_dir
(toolchain, rule, output_dir)
| 427 | |
| 428 | |
| 429 | def __output_path(toolchain, rule, output_dir): |
| 430 | """Gets the output path for a file given the toolchain, rule and output_dir""" |
| 431 | filename = '%s_%s.json' % (toolchain, rule) |
| 432 | return os.path.join(output_dir, filename) |
| 433 | |
| 434 | |
| 435 | ########################################################################################### |