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

Side by Side Diff: android_webview/android_webview.gyp

Issue 415043006: [Android WebView] AwMediaUrlInterceptor to handle media assets. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review comments. Created 6 years, 5 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 2009 The Chromium Authors. All rights reserved. 1 # Copyright 2009 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': 'libwebviewchromium', 10 'target_name': 'libwebviewchromium',
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 '../components/components.gyp:auto_login_parser', 93 '../components/components.gyp:auto_login_parser',
94 '../components/components.gyp:autofill_content_renderer', 94 '../components/components.gyp:autofill_content_renderer',
95 '../components/components.gyp:cdm_browser', 95 '../components/components.gyp:cdm_browser',
96 '../components/components.gyp:cdm_renderer', 96 '../components/components.gyp:cdm_renderer',
97 '../components/components.gyp:data_reduction_proxy_browser', 97 '../components/components.gyp:data_reduction_proxy_browser',
98 '../components/components.gyp:navigation_interception', 98 '../components/components.gyp:navigation_interception',
99 '../components/components.gyp:visitedlink_browser', 99 '../components/components.gyp:visitedlink_browser',
100 '../components/components.gyp:visitedlink_renderer', 100 '../components/components.gyp:visitedlink_renderer',
101 '../components/components.gyp:web_contents_delegate_android', 101 '../components/components.gyp:web_contents_delegate_android',
102 '../content/content.gyp:content_app_both', 102 '../content/content.gyp:content_app_both',
103 '../content/content.gyp:content_browser',
103 '../gpu/gpu.gyp:command_buffer_service', 104 '../gpu/gpu.gyp:command_buffer_service',
104 '../gpu/gpu.gyp:gles2_implementation', 105 '../gpu/gpu.gyp:gles2_implementation',
105 '../gpu/gpu.gyp:gl_in_process_context', 106 '../gpu/gpu.gyp:gl_in_process_context',
106 '../media/media.gyp:media', 107 '../media/media.gyp:media',
107 '../printing/printing.gyp:printing', 108 '../printing/printing.gyp:printing',
108 '../skia/skia.gyp:skia', 109 '../skia/skia.gyp:skia',
109 '../third_party/WebKit/public/blink.gyp:blink', 110 '../third_party/WebKit/public/blink.gyp:blink',
110 '../v8/tools/gyp/v8.gyp:v8', 111 '../v8/tools/gyp/v8.gyp:v8',
111 '../ui/gl/gl.gyp:gl', 112 '../ui/gl/gl.gyp:gl',
112 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs', 113 '../ui/shell_dialogs/shell_dialogs.gyp:shell_dialogs',
(...skipping 149 matching lines...) Expand 10 before | Expand all | Expand 10 after
262 '../components/components.gyp:web_contents_delegate_android_java', 263 '../components/components.gyp:web_contents_delegate_android_java',
263 '../content/content.gyp:content_java', 264 '../content/content.gyp:content_java',
264 '../ui/android/ui_android.gyp:ui_java', 265 '../ui/android/ui_android.gyp:ui_java',
265 ], 266 ],
266 'variables': { 267 'variables': {
267 'java_in_dir': '../android_webview/java', 268 'java_in_dir': '../android_webview/java',
268 }, 269 },
269 'includes': [ '../build/java.gypi' ], 270 'includes': [ '../build/java.gypi' ],
270 }, 271 },
271 ], 272 ],
272 }, { # android_webview_build==1 273 }, { # android_webview_build==1
273 'targets': [ 274 'targets': [
274 { 275 {
275 'target_name': 'android_webview_jarjar_ui_resources', 276 'target_name': 'android_webview_jarjar_ui_resources',
276 'android_unmangled_name': 1, 277 'android_unmangled_name': 1,
277 'type': 'none', 278 'type': 'none',
278 'variables': { 279 'variables': {
279 'res_dir': '../ui/android/java/res', 280 'res_dir': '../ui/android/java/res',
280 'rules_file': '../android_webview/build/jarjar-rules.txt', 281 'rules_file': '../android_webview/build/jarjar-rules.txt',
281 }, 282 },
282 'includes': ['../android_webview/build/jarjar_resources.gypi'], 283 'includes': ['../android_webview/build/jarjar_resources.gypi'],
(...skipping 16 matching lines...) Expand all
299 '../content/content.gyp:content_strings_grd', 300 '../content/content.gyp:content_strings_grd',
300 '../ui/android/ui_android.gyp:ui_strings_grd', 301 '../ui/android/ui_android.gyp:ui_strings_grd',
301 'android_webview_jarjar_ui_resources', 302 'android_webview_jarjar_ui_resources',
302 'android_webview_jarjar_content_resources' 303 'android_webview_jarjar_content_resources'
303 ], 304 ],
304 }, 305 },
305 ], 306 ],
306 }], 307 }],
307 ], 308 ],
308 } 309 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698