| OLD | NEW |
| (Empty) | |
| 1 #!/usr/bin/env python |
| 2 # Copyright 2017 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. |
| 5 |
| 6 import logging |
| 7 import os |
| 8 import sys |
| 9 |
| 10 import extract_actions |
| 11 sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) |
| 12 import presubmit_util |
| 13 |
| 14 def main(argv): |
| 15 presubmit_util.DoPresubmitMain(argv, 'actions.xml', 'actions.old.xml', |
| 16 'pretty_print.py', extract_actions.UpdateXml) |
| 17 |
| 18 |
| 19 if '__main__' == __name__: |
| 20 sys.exit(main(sys.argv)) |
| OLD | NEW |