Roll src/third_party/WebKit 86dee58:318ad17 (svn 202526:202527)
[chromium-blink-merge.git] / testing / scripts / checkperms.py
blob17e32c4f62066fc49f2461eb4588017095130e72
1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
6 import json
7 import os
8 import sys
11 import common
14 def main_run(args):
15 with common.temporary_file() as tempfile_path:
16 rc = common.run_command([
17 os.path.join(common.SRC_DIR, 'tools', 'checkperms', 'checkperms.py'),
18 '--root', args.paths['checkout'],
19 '--json', tempfile_path
22 with open(tempfile_path) as f:
23 checkperms_results = json.load(f)
25 result_set = set()
26 for result in checkperms_results:
27 result_set.add((result['rel_path'], result['error']))
29 json.dump({
30 'valid': True,
31 'failures': ['%s: %s' % (r[0], r[1]) for r in result_set],
32 }, args.output)
34 return rc
37 def main_compile_targets(args):
38 json.dump([], args.output)
41 if __name__ == '__main__':
42 funcs = {
43 'run': main_run,
44 'compile_targets': main_compile_targets,
46 sys.exit(common.run_script(sys.argv[1:], funcs))