Index: content/content_tests.gypi |
=================================================================== |
--- content/content_tests.gypi (revision 115211) |
+++ content/content_tests.gypi (working copy) |
@@ -402,10 +402,10 @@ |
}, |
], |
'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': [ |
@@ -415,10 +415,21 @@ |
], |
'include_dirs': [ |
'<(DEPTH)/third_party/angle/include', |
- '<(DEPTH)/third_party/openmax/il', |
], |
+ 'conditions': [ |
+ ['target_arch=="arm"', { |
+ 'include_dirs': [ |
+ '<(DEPTH)/third_party/openmax/il', |
+ ], |
+ }], |
+ ['OS=="win"', { |
+ 'dependencies': [ |
+ '../base/allocator/allocator.gyp:allocator', |
+ ], |
+ }], |
+ ], |
'sources': [ |
- 'common/gpu/media/omx_video_decode_accelerator_unittest.cc', |
+ 'common/gpu/media/video_decode_accelerator_unittest.cc', |
], |
} |
], |