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.
6 """Create placeholder files.
13 from util
import build_utils
16 parser
= optparse
.OptionParser()
19 help='Destination directory to have placeholder files.')
22 help='Path to touch on success')
24 options
, args
= parser
.parse_args()
27 target_path
= os
.path
.join(options
.dest_lib_dir
, name
)
28 build_utils
.Touch(target_path
)
31 build_utils
.Touch(options
.stamp
)
33 if __name__
== '__main__':