| 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 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 'Lcom/google/android/apps/chrome/PageInfoViewer', | 155 'Lcom/google/android/apps/chrome/PageInfoViewer', |
| 156 'Lcom/google/android/apps/chrome/Tab', | 156 'Lcom/google/android/apps/chrome/Tab', |
| 157 'Lcom/google/android/apps/chrome/database/SQLiteCursor', | 157 'Lcom/google/android/apps/chrome/database/SQLiteCursor', |
| 158 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer', | 158 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer', |
| 159 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer$NativeInfoBar', | 159 'Lcom/google/android/apps/chrome/infobar/InfoBarContainer$NativeInfoBar', |
| 160 ('Lcom/google/android/apps/chrome/preferences/ChromeNativePreferences$' | 160 ('Lcom/google/android/apps/chrome/preferences/ChromeNativePreferences$' |
| 161 'PasswordListObserver'), | 161 'PasswordListObserver'), |
| 162 'Lorg/chromium/android_webview/AwWebContentsDelegate', | 162 'Lorg/chromium/android_webview/AwWebContentsDelegate', |
| 163 'Lorg/chromium/base/SystemMessageHandler', | 163 'Lorg/chromium/base/SystemMessageHandler', |
| 164 'Lorg/chromium/chrome/browser/ChromeWebContentsDelegateAndroid', | 164 'Lorg/chromium/chrome/browser/ChromeWebContentsDelegateAndroid', |
| 165 'Lorg/chromium/chrome/browser/FindMatchRectsDetails', |
| 166 'Lorg/chromium/chrome/browser/FindNotificationDetails', |
| 165 'Lorg/chromium/chrome/browser/JavascriptAppModalDialog', | 167 'Lorg/chromium/chrome/browser/JavascriptAppModalDialog', |
| 166 'Lorg/chromium/chrome/browser/ProcessUtils', | 168 'Lorg/chromium/chrome/browser/ProcessUtils', |
| 167 'Lorg/chromium/chrome/browser/SelectFileDialog', | 169 'Lorg/chromium/chrome/browser/SelectFileDialog', |
| 168 'Lorg/chromium/chrome/browser/component/web_contents_delegate_android/WebC
ontentsDelegateAndroid', | 170 'Lorg/chromium/chrome/browser/component/web_contents_delegate_android/WebC
ontentsDelegateAndroid', |
| 169 'Lorg/chromium/content/browser/ContentVideoView', | 171 'Lorg/chromium/content/browser/ContentVideoView', |
| 170 'Lorg/chromium/content/browser/ContentViewClient', | 172 'Lorg/chromium/content/browser/ContentViewClient', |
| 171 'Lorg/chromium/content/browser/ContentViewCore', | 173 'Lorg/chromium/content/browser/ContentViewCore', |
| 172 'Lorg/chromium/content/browser/DeviceOrientation', | 174 'Lorg/chromium/content/browser/DeviceOrientation', |
| 173 'Lorg/chromium/content/browser/FindNotificationDetails', | 175 'Lorg/chromium/content/browser/FindNotificationDetails', |
| 174 'Lorg/chromium/content/browser/InterceptedRequestData', | 176 'Lorg/chromium/content/browser/InterceptedRequestData', |
| (...skipping 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 978 input_file = options.input_file | 980 input_file = options.input_file |
| 979 output_file = None | 981 output_file = None |
| 980 if options.output_dir: | 982 if options.output_dir: |
| 981 root_name = os.path.splitext(os.path.basename(input_file))[0] | 983 root_name = os.path.splitext(os.path.basename(input_file))[0] |
| 982 output_file = os.path.join(options.output_dir, root_name) + '_jni.h' | 984 output_file = os.path.join(options.output_dir, root_name) + '_jni.h' |
| 983 GenerateJNIHeader(input_file, output_file, options.namespace) | 985 GenerateJNIHeader(input_file, output_file, options.namespace) |
| 984 | 986 |
| 985 | 987 |
| 986 if __name__ == '__main__': | 988 if __name__ == '__main__': |
| 987 sys.exit(main(sys.argv)) | 989 sys.exit(main(sys.argv)) |
| OLD | NEW |