OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 // | 4 // |
5 // The bulk of this file is support code; sorry about that. Here's an overview | 5 // The bulk of this file is support code; sorry about that. Here's an overview |
6 // to hopefully help readers of this code: | 6 // to hopefully help readers of this code: |
7 // - RenderingHelper is charged with interacting with X11/{EGL/GLES2,GLX/GL} or | 7 // - RenderingHelper is charged with interacting with X11/{EGL/GLES2,GLX/GL} or |
8 // Win/EGL. | 8 // Win/EGL. |
9 // - ClientState is an enum for the state of the decode client used by the test. | 9 // - ClientState is an enum for the state of the decode client used by the test. |
10 // - ClientStateNotification is a barrier abstraction that allows the test code | 10 // - ClientStateNotification is a barrier abstraction that allows the test code |
(...skipping 871 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
882 if (it->first == "v" || it->first == "vmodule") | 882 if (it->first == "v" || it->first == "vmodule") |
883 continue; | 883 continue; |
884 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; | 884 LOG(FATAL) << "Unexpected switch: " << it->first << ":" << it->second; |
885 } | 885 } |
886 | 886 |
887 base::ShadowingAtExitManager at_exit_manager; | 887 base::ShadowingAtExitManager at_exit_manager; |
888 RenderingHelper::InitializePlatform(); | 888 RenderingHelper::InitializePlatform(); |
889 | 889 |
890 #if defined(OS_WIN) | 890 #if defined(OS_WIN) |
891 DXVAVideoDecodeAccelerator::PreSandboxInitialization(); | 891 DXVAVideoDecodeAccelerator::PreSandboxInitialization(); |
| 892 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_ARMEL) |
| 893 OmxVideoDecodeAccelerator::PreSandboxInitialization(); |
| 894 #elif defined(OS_CHROMEOS) && defined(ARCH_CPU_X86_FAMILY) |
| 895 VaapiVideoDecodeAccelerator::PreSandboxInitialization(); |
892 #endif | 896 #endif |
893 | 897 |
894 return RUN_ALL_TESTS(); | 898 return RUN_ALL_TESTS(); |
895 } | 899 } |
OLD | NEW |