Returns all targets (direct and dependencies) for the specified build_file.
(target_list, target_dicts, build_file)
| 316 | |
| 317 | |
| 318 | def AllTargets(target_list, target_dicts, build_file): |
| 319 | """Returns all targets (direct and dependencies) for the specified build_file.""" |
| 320 | bftargets = BuildFileTargets(target_list, build_file) |
| 321 | deptargets = DeepDependencyTargets(target_dicts, bftargets) |
| 322 | return bftargets + deptargets |
| 323 | |
| 324 | |
| 325 | def WriteOnDiff(filename): |
nothing calls this directly
no test coverage detected