blob: 42cf144ca22d8b7223cf2cc09ab1f89928e07391 [file] [log] [blame]
[email protected]1f894dc2014-03-13 02:49:531#!/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."""
[email protected]1f894dc2014-03-13 02:49:537
8from webkitpy.common import version_check
[email protected]e16a59d2014-09-12 00:19:279from webkitpy.common.system.systemhost import SystemHost
10from webkitpy.w3c.deps_updater import DepsUpdater
[email protected]1f894dc2014-03-13 02:49:5311
12
13if __name__ == '__main__':
[email protected]e16a59d2014-09-12 00:19:2714 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)