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

Side by Side Diff: build/android/create_native_libraries_header.py

Issue 13469003: Android: nits following library loader changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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 #!/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 .h file for NativeLibraries.template 7 """Writes .h file for NativeLibraries.template
8 8
9 This header should contain the list of native libraries to load in the form: 9 This header should contain the list of native libraries to load in the form:
10 = { "lib1", "lib2" } 10 = { "lib1", "lib2" }
(...skipping 30 matching lines...) Expand all
41 41
42 with open(options.output, 'w') as header: 42 with open(options.output, 'w') as header:
43 header.write(array) 43 header.write(array)
44 44
45 if options.stamp: 45 if options.stamp:
46 build_utils.Touch(options.stamp) 46 build_utils.Touch(options.stamp)
47 47
48 48
49 if __name__ == '__main__': 49 if __name__ == '__main__':
50 sys.exit(main(sys.argv)) 50 sys.exit(main(sys.argv))
51
52
OLDNEW
« no previous file with comments | « android_webview/java/generated_src/org/chromium/content/app/NativeLibraries.java ('k') | build/android/gcc_preprocess.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698