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