OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2014 The Chromium Authors. All rights reserved. | 3 # Copyright 2014 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 import sys | 7 import sys |
8 | 8 |
9 from profile_chrome import main | 9 from util import build_utils |
10 | 10 |
| 11 def main(argv): |
| 12 for f in argv[1:]: |
| 13 build_utils.Touch(f) |
11 | 14 |
12 if __name__ == '__main__': | 15 if __name__ == '__main__': |
13 sys.exit(main.main()) | 16 sys.exit(main(sys.argv)) |
OLD | NEW |