OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # | 2 # |
3 # Copyright 2013 The Chromium Authors. All rights reserved. | 3 # Copyright 2013 The Chromium Authors. All rights reserved. |
4 # Use of this source code is governed by a BSD-style license that can be | 4 # Use of this source code is governed by a BSD-style license that can be |
5 # found in the LICENSE file. | 5 # found in the LICENSE file. |
6 | 6 |
7 """Writes dependency ordered list of native libraries. | 7 """Writes dependency ordered list of native libraries. |
8 | 8 |
9 This list of libraries is used for several steps of building an APK. | 9 This list of libraries is used for several steps of building an APK. |
10 """ | 10 """ |
(...skipping 21 matching lines...) Expand all Loading... |
32 | 32 |
33 with open(options.output, 'w') as outfile: | 33 with open(options.output, 'w') as outfile: |
34 json.dump(libraries, outfile) | 34 json.dump(libraries, outfile) |
35 | 35 |
36 if options.stamp: | 36 if options.stamp: |
37 build_utils.Touch(options.stamp) | 37 build_utils.Touch(options.stamp) |
38 | 38 |
39 | 39 |
40 if __name__ == '__main__': | 40 if __name__ == '__main__': |
41 sys.exit(main(sys.argv)) | 41 sys.exit(main(sys.argv)) |
42 | |
43 | |
OLD | NEW |