Home | History | Annotate | Download | only in gyp
      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 
      7 import sys
      8 
      9 from util import build_utils
     10 
     11 def main(argv):
     12   for f in argv[1:]:
     13     build_utils.Touch(f)
     14 
     15 if __name__ == '__main__':
     16   sys.exit(main(sys.argv))
     17