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 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', | 14 '../../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyna
mic_annotations', |
15 '../../cc/cc.gyp:cc', | 15 '../../cc/cc.gyp:cc', |
16 '../../components/components.gyp:autofill_content_browser', | 16 '../../components/components.gyp:autofill_content_browser', |
17 '../../components/components.gyp:web_contents_delegate_android', | 17 '../../components/components.gyp:web_contents_delegate_android', |
18 '../../content/content.gyp:content_common', | 18 '../../content/content.gyp:content_common', |
| 19 '../../media/media.gyp:player_android', |
19 '../../net/net.gyp:net', | 20 '../../net/net.gyp:net', |
20 '../../skia/skia.gyp:skia', | 21 '../../skia/skia.gyp:skia', |
21 '../../ui/base/ui_base.gyp:ui_base', | 22 '../../ui/base/ui_base.gyp:ui_base', |
22 '../../ui/gfx/gfx.gyp:gfx', | 23 '../../ui/gfx/gfx.gyp:gfx', |
23 '../../ui/gfx/gfx.gyp:gfx_geometry', | 24 '../../ui/gfx/gfx.gyp:gfx_geometry', |
24 '../../webkit/storage_browser.gyp:webkit_storage_browser', | 25 '../../webkit/storage_browser.gyp:webkit_storage_browser', |
25 '../../webkit/storage_common.gyp:webkit_storage_common', | 26 '../../webkit/storage_common.gyp:webkit_storage_common', |
26 '../../third_party/boringssl/boringssl.gyp:boringssl', | 27 '../../third_party/boringssl/boringssl.gyp:boringssl', |
27 'android_webview_native_jni', | 28 'android_webview_native_jni', |
28 ], | 29 ], |
(...skipping 19 matching lines...) Expand all Loading... |
48 'aw_contents_io_thread_client_impl.cc', | 49 'aw_contents_io_thread_client_impl.cc', |
49 'aw_contents_io_thread_client_impl.h', | 50 'aw_contents_io_thread_client_impl.h', |
50 'aw_contents_statics.cc', | 51 'aw_contents_statics.cc', |
51 'aw_contents_statics.h', | 52 'aw_contents_statics.h', |
52 'aw_dev_tools_server.cc', | 53 'aw_dev_tools_server.cc', |
53 'aw_dev_tools_server.h', | 54 'aw_dev_tools_server.h', |
54 'aw_form_database.cc', | 55 'aw_form_database.cc', |
55 'aw_form_database.h', | 56 'aw_form_database.h', |
56 'aw_http_auth_handler.cc', | 57 'aw_http_auth_handler.cc', |
57 'aw_http_auth_handler.h', | 58 'aw_http_auth_handler.h', |
| 59 'aw_media_url_interceptor.cc', |
| 60 'aw_media_url_interceptor.h', |
58 'aw_pdf_exporter.cc', | 61 'aw_pdf_exporter.cc', |
59 'aw_pdf_exporter.h', | 62 'aw_pdf_exporter.h', |
60 'aw_picture.cc', | 63 'aw_picture.cc', |
61 'aw_picture.h', | 64 'aw_picture.h', |
62 'aw_quota_manager_bridge_impl.cc', | 65 'aw_quota_manager_bridge_impl.cc', |
63 'aw_quota_manager_bridge_impl.h', | 66 'aw_quota_manager_bridge_impl.h', |
64 'aw_resource.cc', | 67 'aw_resource.cc', |
65 'aw_resource.h', | 68 'aw_resource.h', |
66 'aw_settings.cc', | 69 'aw_settings.cc', |
67 'aw_settings.h', | 70 'aw_settings.h', |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 'variables': { | 146 'variables': { |
144 'jni_gen_package': 'android_webview', | 147 'jni_gen_package': 'android_webview', |
145 }, | 148 }, |
146 'includes': [ '../../build/jni_generator.gypi' ], | 149 'includes': [ '../../build/jni_generator.gypi' ], |
147 'dependencies': [ | 150 'dependencies': [ |
148 'cancellation_signal_android_jar_jni_headers', | 151 'cancellation_signal_android_jar_jni_headers', |
149 ], | 152 ], |
150 }, | 153 }, |
151 ], | 154 ], |
152 } | 155 } |
OLD | NEW |