widevine: Add arm64 arch manifest value (see issue #2981)

This commit is contained in:
Matthew Isaacs
2021-06-17 14:07:27 +00:00
committed by Marshall Greenblatt
parent de66fb9406
commit 9c7367bd4e

View File

@@ -51,7 +51,9 @@ const char kWidevineCdmArch[] =
"ia32"; // This differs from the component updater which uses "x86".
#elif defined(ARCH_CPU_X86_64)
"x64";
#else // TODO(viettrungluu): Support an ARM check?
#elif defined(ARCH_CPU_ARM64)
"arm64";
#else
"???";
#endif