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

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

Issue 1136573002: Use the Errorprone Compiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase and parser update Created 5 years, 6 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 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 """This finds the java distribution's tools.jar and copies it somewhere.
8 """
9
10 import argparse
11 import os
12 import re
13 import shutil
14 import sys
15
16 from util import build_utils
17
18 RT_JAR_FINDER = re.compile(r'\[Opened (.*)/jre/lib/rt.jar\]')
19
20 def main():
21 parser = argparse.ArgumentParser(description='Find Sun Tools Jar')
22 parser.add_argument('--depfile',
23 help='Path to depfile. This must be specified as the '
24 'action\'s first output.')
jbudorick 2015/05/28 15:38:00 nit: indent this line to where the help string sta
raywilliams_chromium 2015/05/28 17:59:11 Done.
25 parser.add_argument('--output', required=True)
26 args = parser.parse_args()
27
28 sun_tools_jar_path = FindSunToolsJarPath()
29
30 if sun_tools_jar_path is None:
31 raise Exception("Couldn\'t find tools.jar")
32
33 shutil.copy(sun_tools_jar_path, args.output)
34
35 if args.depfile:
36 build_utils.WriteDepfile(
37 args.depfile,
38 [sun_tools_jar_path] + build_utils.GetPythonDependencies())
39
40
41 def FindSunToolsJarPath():
42 # This works with at least openjdk 1.6, 1.7 and sun java 1.6, 1.7
43 stdout = build_utils.CheckOutput(
44 ["java", "-verbose", "-version"], print_stderr=False)
45 sun_tools_jar_path = None
46 for ln in stdout.splitlines():
47 match = re.match(RT_JAR_FINDER, ln)
48 if match:
49 sun_tools_jar_path = os.path.join(match.group(1), 'lib', 'tools.jar')
jbudorick 2015/05/28 15:38:00 nit: just return os.path.join(...) here and return
raywilliams_chromium 2015/05/28 17:59:11 I like that idea
raywilliams_chromium 2015/05/28 17:59:11 Done.
50 break
51
52 return sun_tools_jar_path
53
54
55 if __name__ == '__main__':
56 sys.exit(main())
OLDNEW
« no previous file with comments | « build/android/BUILD.gn ('k') | build/android/gyp/javac.py » ('j') | build/android/gyp/javac.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698