| 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 os |
| 7 import sys |
| 8 |
| 9 import model |
| 10 sys.path.append(os.path.join(os.path.dirname(__file__), '..', 'common')) |
| 11 import presubmit_util |
| 12 |
| 13 |
| 14 |
| 15 def main(argv): |
| 16 presubmit_util.DoPresubmitMain(argv, 'ukm.xml', 'ukm.old.xml', |
| 17 'pretty_print.py', model.UpdateXML) |
| 18 |
| 19 |
| 20 if '__main__' == __name__: |
| 21 sys.exit(main(sys.argv)) |
| OLD | NEW |