1#!/usr/bin/env python 2# 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 5# found in the LICENSE file. 6 7import sys 8 9from util import build_utils 10 11def main(argv): 12 for f in argv[1:]: 13 build_utils.Touch(f) 14 15if __name__ == '__main__': 16 sys.exit(main(sys.argv)) 17