Move core/forwarders to internal.
[chromium-blink-merge.git] / build / android / gyp / touch.py
blob7b4375e40abcd3f7e37516f2182dc61d0539d570
1 #!/usr/bin/env python
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.
7 import sys
9 from util import build_utils
11 def main(argv):
12 for f in argv[1:]:
13 build_utils.Touch(f)
15 if __name__ == '__main__':
16 sys.exit(main(sys.argv))