1 #!/usr/bin/python 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 4 # found in the LICENSE file. 5 6 """Pull latest revisions of the W3C test repos and update our DEPS entries.""" 7 8 from webkitpy.common import version_check 9 from webkitpy.common.system.systemhost import SystemHost 10 from webkitpy.w3c.deps_updater import DepsUpdater 11 12 13 if __name__ == '__main__': 14 host = SystemHost() 15 updater = DepsUpdater(host) 16 try: 17 host.exit(updater.main()) 18 except KeyboardInterrupt: 19 host.print_("Interrupted, exiting") 20 host.exit(130) 21