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

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: Created 7 years, 11 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 8516920b67ed2f89626a26147a46ebc794e13faa..0efbd0481b4aebc3be944e170144dcea0b7e27fb 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -485,6 +485,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