| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import argparse | 6 import argparse |
| 7 import json | 7 import json |
| 8 import os | 8 import os |
| 9 import subprocess | 9 import subprocess |
| 10 import sys | 10 import sys |
| (...skipping 29 matching lines...) Expand all Loading... |
| 40 'Google Chrome Linux x64', | 40 'Google Chrome Linux x64', |
| 41 'Google Chrome Mac', | 41 'Google Chrome Mac', |
| 42 'Google Chrome Win', | 42 'Google Chrome Win', |
| 43 ], | 43 ], |
| 44 'master.chromium.chromiumos': [ | 44 'master.chromium.chromiumos': [ |
| 45 'Linux ChromiumOS Full', | 45 'Linux ChromiumOS Full', |
| 46 ], | 46 ], |
| 47 'master.chromium.gpu': [ | 47 'master.chromium.gpu': [ |
| 48 'Android Debug (Nexus 5)', | 48 'Android Debug (Nexus 5)', |
| 49 'Android Debug (Nexus 6)', | 49 'Android Debug (Nexus 6)', |
| 50 'Android Debug (Nexus 9)', | |
| 51 'GPU Linux Builder (dbg)', | 50 'GPU Linux Builder (dbg)', |
| 52 'GPU Mac Builder (dbg)', | 51 'GPU Mac Builder (dbg)', |
| 53 'GPU Win Builder (dbg)', | 52 'GPU Win Builder (dbg)', |
| 54 'Linux Debug (NVIDIA)', | 53 'Linux Debug (NVIDIA)', |
| 55 'Mac 10.10 Debug (Intel)', | 54 'Mac 10.10 Debug (Intel)', |
| 56 'Mac Retina Debug', | 55 'Mac Retina Debug', |
| 57 'Mac 10.10 Retina Debug (AMD)', | 56 'Mac 10.10 Retina Debug (AMD)', |
| 58 'Mac 10.10 Retina Release (AMD)', | 57 'Mac 10.10 Retina Release (AMD)', |
| 59 'Win7 Debug (NVIDIA)', | 58 'Win7 Debug (NVIDIA)', |
| 60 ], | 59 ], |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 exit_code = 1 | 236 exit_code = 1 |
| 238 print 'Unused suppressions:' | 237 print 'Unused suppressions:' |
| 239 print '\n'.join(sorted( | 238 print '\n'.join(sorted( |
| 240 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) | 239 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) |
| 241 | 240 |
| 242 return exit_code | 241 return exit_code |
| 243 | 242 |
| 244 | 243 |
| 245 if __name__ == '__main__': | 244 if __name__ == '__main__': |
| 246 sys.exit(main(sys.argv[1:])) | 245 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |