(p, spec)
| 1642 | |
| 1643 | |
| 1644 | def _AddToolFilesToMSVS(p, spec): |
| 1645 | # Add in tool files (rules). |
| 1646 | tool_files = OrderedSet() |
| 1647 | for _, config in spec["configurations"].items(): |
| 1648 | for f in config.get("msvs_tool_files", []): |
| 1649 | tool_files.add(f) |
| 1650 | for f in tool_files: |
| 1651 | p.AddToolFile(f) |
| 1652 | |
| 1653 | |
| 1654 | def _HandlePreCompiledHeaders(p, sources, spec): |
no test coverage detected