| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 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 json | 6 import json |
| 7 import os | 7 import os |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 | 10 |
| 11 import common | 11 import common |
| 12 | 12 |
| 13 | 13 |
| 14 def main_run(args): | 14 def main_run(args): |
| 15 with common.temporary_file() as tempfile_path: | 15 with common.temporary_file() as tempfile_path: |
| 16 rc = common.run_command([ | 16 rc = common.run_command([ |
| 17 os.path.join(common.SRC_DIR, 'android_webview', 'tools', | 17 os.path.join(common.SRC_DIR, 'third_party', 'WebKit', |
| 18 'webview_licenses.py'), | 18 'Tools', 'Scripts', 'lint-test-expectations'), |
| 19 'scan', | |
| 20 '--json', tempfile_path | 19 '--json', tempfile_path |
| 21 ]) | 20 ]) |
| 22 | 21 |
| 23 with open(tempfile_path) as f: | 22 with open(tempfile_path) as f: |
| 24 results = json.load(f) | 23 failures = json.load(f) |
| 25 | 24 |
| 26 json.dump({ | 25 json.dump({ |
| 27 'valid': True, | 26 'valid': True, |
| 28 'failures': results, | 27 'failures': failures, |
| 29 }, args.output) | 28 }, args.output) |
| 30 | 29 |
| 31 return rc | 30 return rc |
| 32 | 31 |
| 33 | 32 |
| 34 def main_compile_targets(args): | 33 def main_compile_targets(args): |
| 35 json.dump([], args.output) | 34 json.dump([], args.output) |
| 36 | 35 |
| 37 | 36 |
| 38 if __name__ == '__main__': | 37 if __name__ == '__main__': |
| 39 funcs = { | 38 funcs = { |
| 40 'run': main_run, | 39 'run': main_run, |
| 41 'compile_targets': main_compile_targets, | 40 'compile_targets': main_compile_targets, |
| 42 } | 41 } |
| 43 sys.exit(common.run_script(sys.argv[1:], funcs)) | 42 sys.exit(common.run_script(sys.argv[1:], funcs)) |
| OLD | NEW |