()
| 41 | output_dirs.append(f) |
| 42 | |
| 43 | def generate_paths(): |
| 44 | for out_dir in output_dirs: |
| 45 | out_path = os.path.join(v8_root, out_dir) |
| 46 | for config in os.listdir(out_path): |
| 47 | path = os.path.join(out_path, config) |
| 48 | if os.path.exists(os.path.join(path, 'build.ninja')): |
| 49 | yield path |
| 50 | |
| 51 | def approx_directory_mtime(path): |
| 52 | # This is a heuristic; don't recurse into subdirectories. |
no test coverage detected