From a target_list, returns the subset from the specified build_file.
(target_list, build_file)
| 311 | |
| 312 | |
| 313 | def BuildFileTargets(target_list, build_file): |
| 314 | """From a target_list, returns the subset from the specified build_file.""" |
| 315 | return [p for p in target_list if BuildFile(p) == build_file] |
| 316 | |
| 317 | |
| 318 | def AllTargets(target_list, target_dicts, build_file): |
no test coverage detected