#include "media/base/supported_types.h"
#include "build/build_config.h"
#include "build/chromeos_buildflags.h"
#include "media/base/media_switches.h"
#include "media/mojo/buildflags.h"
#include "testing/gtest/include/gtest/gtest.h"
#if BUILDFLAG(IS_ANDROID)
#include "base/android/build_info.h"
#endif
#if BUILDFLAG(IS_WIN)
#include "base/win/windows_version.h"
#endif
namespace media {
#if BUILDFLAG(USE_PROPRIETARY_CODECS)
const bool kPropCodecsEnabled = true;
#else
const bool kPropCodecsEnabled = …;
#endif
TEST(SupportedTypesTest, IsSupportedVideoTypeBasics) { … }
TEST(SupportedTypesTest, IsSupportedVideoType_VP9TransferFunctions) { … }
TEST(SupportedTypesTest, IsSupportedVideoType_VP9Primaries) { … }
TEST(SupportedTypesTest, IsSupportedVideoType_VP9Matrix) { … }
TEST(SupportedTypesTest, IsSupportedVideoType_VP9Profiles) { … }
TEST(SupportedTypesTest, IsSupportedAudioTypeWithSpatialRenderingBasics) { … }
TEST(SupportedTypesTest, XHE_AACSupported) { … }
TEST(SupportedTypesTest, IsSupportedVideoTypeWithHdrMetadataBasics) { … }
TEST(SupportedTypesTest, IsBuiltInVideoCodec) { … }
}