OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 # TODO (qinmin): Need to refactor this file as base should not know about | 6 # TODO (qinmin): Need to refactor this file as base should not know about |
7 # higher level concepts. Currently this file has knowledge about higher level | 7 # higher level concepts. Currently this file has knowledge about higher level |
8 # java classes. | 8 # java classes. |
9 | 9 |
10 """Extracts native methods from a Java file and generates the JNI bindings. | 10 """Extracts native methods from a Java file and generates the JNI bindings. |
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
169 'Lorg/chromium/content/browser/ContentHttpAuthHandler', | 169 'Lorg/chromium/content/browser/ContentHttpAuthHandler', |
170 'Lorg/chromium/content/browser/DeviceInfo', | 170 'Lorg/chromium/content/browser/DeviceInfo', |
171 'Lorg/chromium/content/browser/DeviceOrientation', | 171 'Lorg/chromium/content/browser/DeviceOrientation', |
172 'Lorg/chromium/content/browser/FileChooserParams', | 172 'Lorg/chromium/content/browser/FileChooserParams', |
173 'Lorg/chromium/content/browser/InterceptedRequestData', | 173 'Lorg/chromium/content/browser/InterceptedRequestData', |
174 'Lorg/chromium/content/browser/JavaInputStream', | 174 'Lorg/chromium/content/browser/JavaInputStream', |
175 'Lorg/chromium/content/browser/LocationProvider', | 175 'Lorg/chromium/content/browser/LocationProvider', |
176 'Lorg/chromium/content/browser/SandboxedProcessArgs', | 176 'Lorg/chromium/content/browser/SandboxedProcessArgs', |
177 'Lorg/chromium/content/browser/SandboxedProcessConnection', | 177 'Lorg/chromium/content/browser/SandboxedProcessConnection', |
178 'Lorg/chromium/content/app/SandboxedProcessService', | 178 'Lorg/chromium/content/app/SandboxedProcessService', |
179 'Lorg/chromium/content/browser/SurfaceTextureListener', | |
180 'Lorg/chromium/content/browser/TouchPoint', | 179 'Lorg/chromium/content/browser/TouchPoint', |
181 'Lorg/chromium/content/browser/WaitableNativeEvent', | 180 'Lorg/chromium/content/browser/WaitableNativeEvent', |
| 181 'Lorg/chromium/content/common/SurfaceTextureListener', |
182 'Lorg/chromium/media/MediaPlayerListener', | 182 'Lorg/chromium/media/MediaPlayerListener', |
183 'Lorg/chromium/net/NetworkChangeNotifier', | 183 'Lorg/chromium/net/NetworkChangeNotifier', |
184 'Lorg/chromium/net/ProxyChangeListener', | 184 'Lorg/chromium/net/ProxyChangeListener', |
185 ] | 185 ] |
186 if param == 'byte[][]': | 186 if param == 'byte[][]': |
187 return '[[B' | 187 return '[[B' |
188 prefix = '' | 188 prefix = '' |
189 # Array? | 189 # Array? |
190 if param[-2:] == '[]': | 190 if param[-2:] == '[]': |
191 prefix = '[' | 191 prefix = '[' |
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
994 CheckFilenames(input_files, output_files) | 994 CheckFilenames(input_files, output_files) |
995 if options.jar_file: | 995 if options.jar_file: |
996 # CheckFileNames guarantees same length for inputs and outputs | 996 # CheckFileNames guarantees same length for inputs and outputs |
997 out_dirs = map(os.path.dirname, output_files) | 997 out_dirs = map(os.path.dirname, output_files) |
998 input_files = ExtractInputFiles(options.jar_file, input_files, out_dirs) | 998 input_files = ExtractInputFiles(options.jar_file, input_files, out_dirs) |
999 GenerateJNIHeaders(input_files, output_files, options.namespace) | 999 GenerateJNIHeaders(input_files, output_files, options.namespace) |
1000 | 1000 |
1001 | 1001 |
1002 if __name__ == '__main__': | 1002 if __name__ == '__main__': |
1003 sys.exit(main(sys.argv)) | 1003 sys.exit(main(sys.argv)) |
OLD | NEW |