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 import json | 7 import json |
8 import optparse | 8 import optparse |
9 import os | 9 import os |
10 import sys | 10 import sys |
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
50 options.stripped_libraries_dir, library) | 50 options.stripped_libraries_dir, library) |
51 StripLibrary(options.android_strip, options.android_strip_arg, library_path, | 51 StripLibrary(options.android_strip, options.android_strip_arg, library_path, |
52 stripped_library_path) | 52 stripped_library_path) |
53 | 53 |
54 if options.stamp: | 54 if options.stamp: |
55 build_utils.Touch(options.stamp) | 55 build_utils.Touch(options.stamp) |
56 | 56 |
57 | 57 |
58 if __name__ == '__main__': | 58 if __name__ == '__main__': |
59 sys.exit(main(sys.argv)) | 59 sys.exit(main(sys.argv)) |
OLD | NEW |