Chromium Code Reviews| 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', |
| ], |
| } |
| ], |