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

Unified Diff: content/content_tests.gypi

Issue 10388108: Implement media::VideoDecodeAccelerator on Mac (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: a Created 8 years, 7 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_tests.gypi
diff --git a/content/content_tests.gypi b/content/content_tests.gypi
index b367ec3b83e218bb8b3252a3f8e4ca77f914a99e..b84847ea3535f11bc822cbb6e586ba3927aa7455 100644
--- a/content/content_tests.gypi
+++ b/content/content_tests.gypi
@@ -471,7 +471,7 @@
},
],
'conditions': [
- ['target_arch=="arm" or OS=="win"', {
+ ['target_arch=="arm" or OS=="win" or OS=="mac"', {
'targets': [
{
'conditions': [
@@ -481,6 +481,16 @@
'<(DEPTH)/third_party/openmax/il',
],
}],
+ ['OS=="mac"', {
+ 'target_name': 'video_decode_accelerator_unittest',
+ 'dependencies': [
+ '../ui/gl/gl.gyp:gl',
+ '../ui/ui.gyp:ui',
+ ],
+ 'sources!': [
+ 'common/gpu/media/rendering_helper_egl.cc',
+ ],
+ }],
['OS=="win"', {
'target_name': 'dxva_video_decode_accelerator_unittest',
'dependencies': [
@@ -510,6 +520,9 @@
'<(DEPTH)/third_party/angle/include',
],
'sources': [
+ 'common/gpu/media/rendering_helper.h',
+ 'common/gpu/media/rendering_helper_mac.mm',
+ 'common/gpu/media/rendering_helper_egl.cc',
'common/gpu/media/video_decode_accelerator_unittest.cc',
],
}

Powered by Google App Engine
This is Rietveld 408576698