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

Unified Diff: content/content_common.gypi

Issue 7088021: OmxVideoDecodeAcceleratorTest is born! (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 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_common.gypi
diff --git a/content/content_common.gypi b/content/content_common.gypi
index 7913d47042fee07ea7d373141e57575556752268..05dd2b058f4d3144b0f95c2934db42bca74b5157 100644
--- a/content/content_common.gypi
+++ b/content/content_common.gypi
@@ -292,6 +292,9 @@
],
}],
['target_arch=="arm"', {
+ 'dependencies': [
+ '../media/media.gyp:media',
+ ],
'sources': [
'common/gpu/gles2_texture_to_egl_image_translator.cc',
'common/gpu/gles2_texture_to_egl_image_translator.h',
@@ -312,4 +315,28 @@
],
},
],
+
+ 'conditions': [
+ ['target_arch=="arm"', {
+ 'targets': [
+ {
+ 'target_name': 'omx_video_decode_accelerator_unittest',
+ 'type': 'executable',
+ 'dependencies': [
+ 'content_common',
+ '../testing/gtest.gyp:gtest',
+ '../testing/gtest.gyp:gtest_main',
+ ],
+ 'include_dirs': [
+ '<(DEPTH)/third_party/angle/include',
+ '<(DEPTH)/third_party/openmax/il',
+ ],
+ 'sources': [
+ 'common/gpu/omx_video_decode_accelerator_unittest.cc',
+ ],
+ }
+ ],
+ },
+ ],
+ ],
}

Powered by Google App Engine
This is Rietveld 408576698