OLD | NEW |
1 #!/usr/bin/python2.4 | 1 #!/usr/bin/env python |
2 # Copyright 2009, Google Inc. | 2 # Copyright 2009, Google Inc. |
3 # All rights reserved. | 3 # All rights reserved. |
4 # | 4 # |
5 # Redistribution and use in source and binary forms, with or without | 5 # Redistribution and use in source and binary forms, with or without |
6 # modification, are permitted provided that the following conditions are | 6 # modification, are permitted provided that the following conditions are |
7 # met: | 7 # met: |
8 # | 8 # |
9 # * Redistributions of source code must retain the above copyright | 9 # * Redistributions of source code must retain the above copyright |
10 # notice, this list of conditions and the following disclaimer. | 10 # notice, this list of conditions and the following disclaimer. |
11 # * Redistributions in binary form must reproduce the above | 11 # * Redistributions in binary form must reproduce the above |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
206 ) | 206 ) |
207 | 207 |
208 # Add the Bundle pseudobuilder. | 208 # Add the Bundle pseudobuilder. |
209 env.AddMethod(BundlePseudoBuilder, 'Bundle') | 209 env.AddMethod(BundlePseudoBuilder, 'Bundle') |
210 | 210 |
211 # Add our target groups | 211 # Add our target groups |
212 AddTargetGroup('all_bundles', 'bundles can be built') | 212 AddTargetGroup('all_bundles', 'bundles can be built') |
213 | 213 |
214 # Restore saved flags. | 214 # Restore saved flags. |
215 env.Append(**saved) | 215 env.Append(**saved) |
OLD | NEW |