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

Side by Side Diff: third_party/scons/scons-local/SCons/Tool/jar.py

Issue 20025: Update SCons to latest checkpoint release, 1.2.0.d20090113.... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 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 | Annotate | Revision Log
OLDNEW
1 """SCons.Tool.jar 1 """SCons.Tool.jar
2 2
3 Tool-specific initialization for jar. 3 Tool-specific initialization for jar.
4 4
5 There normally shouldn't be any need to import this module directly. 5 There normally shouldn't be any need to import this module directly.
6 It will usually be imported through the generic SCons.Tool.Tool() 6 It will usually be imported through the generic SCons.Tool.Tool()
7 selection method. 7 selection method.
8 8
9 """ 9 """
10 10
11 # 11 #
12 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 The SCons Foundat ion 12 # Copyright (c) 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009 The SCons F oundation
13 # 13 #
14 # Permission is hereby granted, free of charge, to any person obtaining 14 # Permission is hereby granted, free of charge, to any person obtaining
15 # a copy of this software and associated documentation files (the 15 # a copy of this software and associated documentation files (the
16 # "Software"), to deal in the Software without restriction, including 16 # "Software"), to deal in the Software without restriction, including
17 # without limitation the rights to use, copy, modify, merge, publish, 17 # without limitation the rights to use, copy, modify, merge, publish,
18 # distribute, sublicense, and/or sell copies of the Software, and to 18 # distribute, sublicense, and/or sell copies of the Software, and to
19 # permit persons to whom the Software is furnished to do so, subject to 19 # permit persons to whom the Software is furnished to do so, subject to
20 # the following conditions: 20 # the following conditions:
21 # 21 #
22 # The above copyright notice and this permission notice shall be included 22 # The above copyright notice and this permission notice shall be included
23 # in all copies or substantial portions of the Software. 23 # in all copies or substantial portions of the Software.
24 # 24 #
25 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY 25 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
26 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE 26 # KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE
27 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 # WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 28 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
29 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 29 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
30 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 30 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
31 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 31 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 # 32 #
33 33
34 __revision__ = "src/engine/SCons/Tool/jar.py 3842 2008/12/20 22:59:52 scons" 34 __revision__ = "src/engine/SCons/Tool/jar.py 3897 2009/01/13 06:45:54 scons"
35 35
36 import SCons.Subst 36 import SCons.Subst
37 import SCons.Util 37 import SCons.Util
38 38
39 def jarSources(target, source, env, for_signature): 39 def jarSources(target, source, env, for_signature):
40 """Only include sources that are not a manifest file.""" 40 """Only include sources that are not a manifest file."""
41 try: 41 try:
42 env['JARCHDIR'] 42 env['JARCHDIR']
43 except KeyError: 43 except KeyError:
44 jarchdir_set = False 44 jarchdir_set = False
45 else: 45 else:
46 jarchdir_set = True 46 jarchdir_set = True
47 jarchdir = env.subst('$JARCHDIR', target=target, source=source) 47 jarchdir = env.subst('$JARCHDIR', target=target, source=source)
48 if jarchdir: 48 if jarchdir:
49 jarchdir = env.fs.Dir(jarchdir) 49 jarchdir = env.fs.Dir(jarchdir)
50 result = [] 50 result = []
51 for src in source: 51 for src in source:
52 contents = src.get_contents() 52 contents = src.get_text_contents()
53 if contents[:16] != "Manifest-Version": 53 if contents[:16] != "Manifest-Version":
54 if jarchdir_set: 54 if jarchdir_set:
55 _chdir = jarchdir 55 _chdir = jarchdir
56 else: 56 else:
57 try: 57 try:
58 _chdir = src.attributes.java_classdir 58 _chdir = src.attributes.java_classdir
59 except AttributeError: 59 except AttributeError:
60 _chdir = None 60 _chdir = None
61 if _chdir: 61 if _chdir:
62 # If we are changing the dir with -C, then sources should 62 # If we are changing the dir with -C, then sources should
63 # be relative to that directory. 63 # be relative to that directory.
64 src = SCons.Subst.Literal(src.get_path(_chdir)) 64 src = SCons.Subst.Literal(src.get_path(_chdir))
65 result.append('-C') 65 result.append('-C')
66 result.append(_chdir) 66 result.append(_chdir)
67 result.append(src) 67 result.append(src)
68 return result 68 return result
69 69
70 def jarManifest(target, source, env, for_signature): 70 def jarManifest(target, source, env, for_signature):
71 """Look in sources for a manifest file, if any.""" 71 """Look in sources for a manifest file, if any."""
72 for src in source: 72 for src in source:
73 contents = src.get_contents() 73 contents = src.get_text_contents()
74 if contents[:16] == "Manifest-Version": 74 if contents[:16] == "Manifest-Version":
75 return src 75 return src
76 return '' 76 return ''
77 77
78 def jarFlags(target, source, env, for_signature): 78 def jarFlags(target, source, env, for_signature):
79 """If we have a manifest, make sure that the 'm' 79 """If we have a manifest, make sure that the 'm'
80 flag is specified.""" 80 flag is specified."""
81 jarflags = env.subst('$JARFLAGS', target=target, source=source) 81 jarflags = env.subst('$JARFLAGS', target=target, source=source)
82 for src in source: 82 for src in source:
83 contents = src.get_contents() 83 contents = src.get_text_contents()
84 if contents[:16] == "Manifest-Version": 84 if contents[:16] == "Manifest-Version":
85 if not 'm' in jarflags: 85 if not 'm' in jarflags:
86 return jarflags + 'm' 86 return jarflags + 'm'
87 break 87 break
88 return jarflags 88 return jarflags
89 89
90 def generate(env): 90 def generate(env):
91 """Add Builders and construction variables for jar to an Environment.""" 91 """Add Builders and construction variables for jar to an Environment."""
92 SCons.Tool.CreateJarBuilder(env) 92 SCons.Tool.CreateJarBuilder(env)
93 93
94 env['JAR'] = 'jar' 94 env['JAR'] = 'jar'
95 env['JARFLAGS'] = SCons.Util.CLVar('cf') 95 env['JARFLAGS'] = SCons.Util.CLVar('cf')
96 env['_JARFLAGS'] = jarFlags 96 env['_JARFLAGS'] = jarFlags
97 env['_JARMANIFEST'] = jarManifest 97 env['_JARMANIFEST'] = jarManifest
98 env['_JARSOURCES'] = jarSources 98 env['_JARSOURCES'] = jarSources
99 env['_JARCOM'] = '$JAR $_JARFLAGS $TARGET $_JARMANIFEST $_JARSOURCES' 99 env['_JARCOM'] = '$JAR $_JARFLAGS $TARGET $_JARMANIFEST $_JARSOURCES'
100 env['JARCOM'] = "${TEMPFILE('$_JARCOM')}" 100 env['JARCOM'] = "${TEMPFILE('$_JARCOM')}"
101 env['JARSUFFIX'] = '.jar' 101 env['JARSUFFIX'] = '.jar'
102 102
103 def exists(env): 103 def exists(env):
104 return env.Detect('jar') 104 return env.Detect('jar')
OLDNEW
« no previous file with comments | « third_party/scons/scons-local/SCons/Tool/intelc.py ('k') | third_party/scons/scons-local/SCons/Tool/javac.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698