Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(212)

Side by Side Diff: build/android/gyp/create_tool_wrapper.py

Issue 1663103004: Create wrapper scripts that set --output-directory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@adb_gdb-explicit
Patch Set: rename script and remove stale comment Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 #!/usr/bin/env python
2 #
3 # Copyright 2016 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 """Creates a simple wrapper script that passes the correct --output-directory.
8 """
9
10 import argparse
11 import os
12
13 _TEMPLATE = """\
14 #!/usr/bin/env python
15 #
16 # This file was generated by //build/android/gyp/create_tool_script.py
watk 2016/02/09 01:06:59 Name is out of date.
17
18 import os
19 import sys
20
21 args = ['--output-directory={output_directory}'] + sys.argv[1:]
22 os.execv('{cmd}', args)
23 """
24
25 def main():
26 parser = argparse.ArgumentParser()
27 parser.add_argument('--output', help='Output path for executable script.')
28 parser.add_argument('--target', help='Path to script being wrapped.')
29 parser.add_argument('--output-directory', help='Value for --output-directory')
30 args = parser.parse_args()
31
32 with open(args.output, 'w') as script:
33 script.write(_TEMPLATE.format(
34 cmd=os.path.abspath(args.target),
35 output_directory=os.path.abspath(args.output_directory)))
36
37 os.chmod(args.output, 0750)
38
39
40 if __name__ == '__main__':
41 main()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698