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

Unified Diff: content/content_tests.gypi

Issue 8510039: Initial implementation of the DXVA 2.0 H.264 hardware decoder for pepper for Windows. The decodin... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years 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
===================================================================
--- content/content_tests.gypi (revision 115034)
+++ content/content_tests.gypi (working copy)
@@ -402,23 +402,30 @@
},
],
'conditions': [
- ['target_arch=="arm"', {
+ ['target_arch=="arm" or OS=="win"', {
'targets': [
{
- 'target_name': 'omx_video_decode_accelerator_unittest',
+ 'target_name': 'video_decode_accelerator_unittest',
'defines!': ['CONTENT_IMPLEMENTATION'],
'type': 'executable',
'dependencies': [
+ '../base/allocator/allocator.gyp:allocator',
Ami GONE FROM CHROMIUM 2011/12/21 01:41:16 This breaks compilation on cros/arm.
ananta 2011/12/21 02:59:58 Made this conditional for windows.
'../base/base.gyp:base',
'content',
'../testing/gtest.gyp:gtest',
],
'include_dirs': [
'<(DEPTH)/third_party/angle/include',
- '<(DEPTH)/third_party/openmax/il',
],
+ 'conditions': [
+ ['target_arch=="arm"', {
+ 'include_dirs': [
+ '<(DEPTH)/third_party/openmax/il',
+ ],
+ }],
+ ],
'sources': [
- 'common/gpu/media/omx_video_decode_accelerator_unittest.cc',
+ 'common/gpu/media/video_decode_accelerator_unittest.cc',
],
}
],
« content/common/gpu/media/video_decode_accelerator_unittest.cc ('K') | « content/content_common.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698