| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 'chromium_code': 1, | 6 'chromium_code': 1, |
| 7 }, | 7 }, |
| 8 'targets': [ | 8 'targets': [ |
| 9 { | 9 { |
| 10 'target_name': 'webview_native', | 10 'target_name': 'webview_native', |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'android_webview_jni_registrar.cc', | 23 'android_webview_jni_registrar.cc', |
| 24 'android_webview_jni_registrar.h', | 24 'android_webview_jni_registrar.h', |
| 25 'android_web_view_util.cc', | 25 'android_web_view_util.cc', |
| 26 'android_web_view_util.h', | 26 'android_web_view_util.h', |
| 27 'aw_http_auth_handler.cc', | 27 'aw_http_auth_handler.cc', |
| 28 'aw_http_auth_handler.h', | 28 'aw_http_auth_handler.h', |
| 29 'aw_browser_dependency_factory.cc', | 29 'aw_browser_dependency_factory.cc', |
| 30 'aw_browser_dependency_factory.h', | 30 'aw_browser_dependency_factory.h', |
| 31 'aw_contents_container.h', | |
| 32 'aw_contents.cc', | 31 'aw_contents.cc', |
| 33 'aw_contents.h', | 32 'aw_contents.h', |
| 33 'aw_contents_container.h', |
| 34 'aw_intercept_navigation_resource_throttle.cc', |
| 34 'aw_web_contents_delegate.cc', | 35 'aw_web_contents_delegate.cc', |
| 35 'aw_web_contents_delegate.h', | 36 'aw_web_contents_delegate.h', |
| 36 'cookie_manager.cc', | 37 'cookie_manager.cc', |
| 37 'cookie_manager.h', | 38 'cookie_manager.h', |
| 38 'intercepted_request_data.cc', | 39 'intercepted_request_data.cc', |
| 39 'intercepted_request_data.h', | 40 'intercepted_request_data.h', |
| 40 ], | 41 ], |
| 41 }, | 42 }, |
| 42 { | 43 { |
| 43 'target_name': 'android_webview_native_jni', | 44 'target_name': 'android_webview_native_jni', |
| 44 'type': 'none', | 45 'type': 'none', |
| 45 'sources': [ | 46 'sources': [ |
| 46 '../java/src/org/chromium/android_webview/AndroidWebViewUtil.java', | 47 '../java/src/org/chromium/android_webview/AndroidWebViewUtil.java', |
| 47 '../java/src/org/chromium/android_webview/AwContents.java', | 48 '../java/src/org/chromium/android_webview/AwContents.java', |
| 48 '../java/src/org/chromium/android_webview/AwHttpAuthHandler.java', | 49 '../java/src/org/chromium/android_webview/AwHttpAuthHandler.java', |
| 50 '../java/src/org/chromium/android_webview/AwWebContentsDelegate.java', |
| 49 '../java/src/org/chromium/android_webview/CookieManager.java', | 51 '../java/src/org/chromium/android_webview/CookieManager.java', |
| 50 '../java/src/org/chromium/android_webview/InterceptedRequestData.java'
, | 52 '../java/src/org/chromium/android_webview/InterceptedRequestData.java'
, |
| 51 ], | 53 ], |
| 52 'variables': { | 54 'variables': { |
| 53 'jni_gen_dir': 'android_webview', | 55 'jni_gen_dir': 'android_webview', |
| 54 }, | 56 }, |
| 55 'includes': [ '../../build/jni_generator.gypi' ], | 57 'includes': [ '../../build/jni_generator.gypi' ], |
| 56 }, | 58 }, |
| 57 ], | 59 ], |
| 58 } | 60 } |
| OLD | NEW |