Chromium Code Reviews| Index: content/common/gpu/media/video_encode_accelerator_unittest.cc |
| diff --git a/content/common/gpu/media/video_encode_accelerator_unittest.cc b/content/common/gpu/media/video_encode_accelerator_unittest.cc |
| index 51bb7cdb7d3a33a4673a86b8b33a035495dfab68..37bb03036c05f14ae80fa123992eb06148fba268 100644 |
| --- a/content/common/gpu/media/video_encode_accelerator_unittest.cc |
| +++ b/content/common/gpu/media/video_encode_accelerator_unittest.cc |
| @@ -23,6 +23,10 @@ |
| #include "media/video/video_encode_accelerator.h" |
| #include "testing/gtest/include/gtest/gtest.h" |
| +#if defined(USE_OZONE) |
| +#include "ui/ozone/public/ozone_platform.h" |
| +#endif |
| + |
| #if defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
| #include "content/common/gpu/media/v4l2_video_encode_accelerator.h" |
| #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) |
| @@ -1287,6 +1291,11 @@ int main(int argc, char** argv) { |
| testing::InitGoogleTest(&argc, argv); // Removes gtest-specific args. |
| base::CommandLine::Init(argc, argv); |
| +#if defined(USE_OZONE) |
| + ui::OzonePlatform::InitializeForUI(); |
|
Pawel Osciak
2014/12/26 00:38:56
Do we need these in encoder test if we don't displ
llandwerlin-old
2014/12/26 02:50:02
Yes, because we need access to the drm fd, initial
|
| + ui::OzonePlatform::InitializeForGPU(); |
| +#endif |
| + |
| base::ShadowingAtExitManager at_exit_manager; |
| scoped_ptr<base::FilePath::StringType> test_stream_data( |
| new base::FilePath::StringType( |
| @@ -1321,6 +1330,8 @@ int main(int argc, char** argv) { |
| } |
| if (it->first == "v" || it->first == "vmodule") |
| continue; |
| + if (it->first == "ozone-platform" || it->first == "ozone-use-surfaceless") |
| + continue; |
| LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; |
| } |