Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(80)

Side by Side Diff: android_webview/native/webview_native.gyp

Issue 415043006: [Android WebView] AwMediaUrlInterceptor to handle media assets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « android_webview/native/aw_media_url_interceptor_unittest.cc ('k') | android_webview/test/unittest/assets/asset_file.ogg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698