Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 %YAML 1.2 | |
| 2 --- | | |
| 3 <%! | |
| 4 import json | |
| 5 %> | |
| 6 | |
| 7 ${json.dumps([{"name": tgt.name, | |
| 8 "language": tgt.language, | |
| 9 "platforms": tgt.platforms, | |
| 10 "ci_platforms": tgt.ci_platforms, | |
| 11 "gtest": tgt.gtest, | |
| 12 "exclude_configs": tgt.get("exclude_configs", []), | |
| 13 "args": [], | |
| 14 "flaky": tgt.flaky, | |
| 15 "cpu_cost": tgt.get("cpu_cost", 1.0)} | |
| 16 for tgt in targets | |
| 17 if tgt.get('run', True) and tgt.build == 'test'] + | |
| 18 tests, | |
| 19 sort_keys=True, indent=2)} | |
| OLD | NEW |