| 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', |
| 11 'type': 'static_library', | 11 'type': 'static_library', |
| 12 'dependencies': [ | 12 'dependencies': [ |
| 13 '../../base/base.gyp:base_static', | 13 '../../base/base.gyp:base_static', |
| 14 '../../content/content.gyp:web_contents_delegate_android', | 14 '../../content/content.gyp:web_contents_delegate_android', |
| 15 'android_webview_native_jni', | 15 'android_webview_native_jni', |
| 16 ], | 16 ], |
| 17 'include_dirs': [ | 17 'include_dirs': [ |
| 18 '../..', | 18 '../..', |
| 19 '../../skia/config', | 19 '../../skia/config', |
| 20 '<(SHARED_INTERMEDIATE_DIR)/android_webview', | 20 '<(SHARED_INTERMEDIATE_DIR)/android_webview', |
| 21 ], | 21 ], |
| 22 'sources': [ | 22 'sources': [ |
| 23 'android_protocol_handler.cc', | 23 'android_protocol_handler.cc', |
| 24 'android_protocol_handler.h', | 24 'android_protocol_handler.h', |
| 25 'android_stream_reader_url_request_job.cc', | |
| 26 'android_stream_reader_url_request_job.h', | |
| 27 'android_webview_jni_registrar.cc', | 25 'android_webview_jni_registrar.cc', |
| 28 'android_webview_jni_registrar.h', | 26 'android_webview_jni_registrar.h', |
| 29 'aw_browser_dependency_factory.cc', | 27 'aw_browser_dependency_factory.cc', |
| 30 'aw_browser_dependency_factory.h', | 28 'aw_browser_dependency_factory.h', |
| 31 'aw_contents.cc', | 29 'aw_contents.cc', |
| 32 'aw_contents.h', | 30 'aw_contents.h', |
| 33 'aw_contents_io_thread_client_impl.cc', | 31 'aw_contents_io_thread_client_impl.cc', |
| 34 'aw_contents_io_thread_client_impl.h', | 32 'aw_contents_io_thread_client_impl.h', |
| 35 'aw_http_auth_handler.cc', | 33 'aw_http_auth_handler.cc', |
| 36 'aw_http_auth_handler.h', | 34 'aw_http_auth_handler.h', |
| 37 'aw_javascript_dialog_creator.cc', | 35 'aw_javascript_dialog_creator.cc', |
| 38 'aw_javascript_dialog_creator.h', | 36 'aw_javascript_dialog_creator.h', |
| 39 'aw_resource.cc', | 37 'aw_resource.cc', |
| 40 'aw_resource.h', | 38 'aw_resource.h', |
| 41 'aw_web_contents_delegate.cc', | 39 'aw_web_contents_delegate.cc', |
| 42 'aw_web_contents_delegate.h', | 40 'aw_web_contents_delegate.h', |
| 43 'cookie_manager.cc', | 41 'cookie_manager.cc', |
| 44 'cookie_manager.h', | 42 'cookie_manager.h', |
| 43 'input_stream_impl.cc', |
| 44 'input_stream_impl.h', |
| 45 'intercepted_request_data_impl.cc', | 45 'intercepted_request_data_impl.cc', |
| 46 'intercepted_request_data_impl.h', | 46 'intercepted_request_data_impl.h', |
| 47 'js_result_handler.cc', | 47 'js_result_handler.cc', |
| 48 'js_result_handler.h', | 48 'js_result_handler.h', |
| 49 'net_init_native_callback.cc', | 49 'net_init_native_callback.cc', |
| 50 'state_serializer.cc', | 50 'state_serializer.cc', |
| 51 'state_serializer.h', | 51 'state_serializer.h', |
| 52 ], | 52 ], |
| 53 }, | 53 }, |
| 54 { | 54 { |
| (...skipping 23 matching lines...) Expand all Loading... |
| 78 'variables': { | 78 'variables': { |
| 79 'jni_gen_dir': 'android_webview', | 79 'jni_gen_dir': 'android_webview', |
| 80 }, | 80 }, |
| 81 'includes': [ '../../build/jni_generator.gypi' ], | 81 'includes': [ '../../build/jni_generator.gypi' ], |
| 82 'dependencies': [ | 82 'dependencies': [ |
| 83 'android_jar_jni_headers', | 83 'android_jar_jni_headers', |
| 84 ], | 84 ], |
| 85 }, | 85 }, |
| 86 ], | 86 ], |
| 87 } | 87 } |
| OLD | NEW |