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

Unified Diff: content/content_common.gypi

Issue 11973010: AndroidVDA by using Android's MediaCodec API. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: using "ui/gl/gl_bindings.h" Created 7 years, 10 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 side-by-side diff with in-line comments
Download patch
Index: content/content_common.gypi
diff --git a/content/content_common.gypi b/content/content_common.gypi
index c435005d09c02c024949051f7dff95a4ad424a50..c5cc46d0822b3a78b9ea6179acdabdee5281ea79 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -486,6 +486,26 @@
'../gpu/gpu.gyp:command_buffer_service',
],
}],
+ ['OS=="android"', {
+ 'dependencies': [
+ '../media/media.gyp:media',
+ ],
+ 'sources': [
+ 'common/gpu/media/android_video_decode_accelerator.cc',
+ 'common/gpu/media/android_video_decode_accelerator.h',
+ 'common/gpu/media/gles2_external_texture_copier.cc',
+ 'common/gpu/media/gles2_external_texture_copier.h',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/angle/include',
+ ],
+ 'link_settings': {
+ 'libraries': [
+ '-lEGL',
+ '-lGLESv2',
+ ],
+ },
+ }],
['target_arch=="arm" and chromeos == 1', {
'dependencies': [
'../media/media.gyp:media',

Powered by Google App Engine
This is Rietveld 408576698