From 33a1bf159037a7ba9ff0d099641029f277ce1d9b Mon Sep 17 00:00:00 2001 From: Jeffy Chen Date: Tue, 6 Sep 2022 18:24:32 +0800 Subject: [PATCH 14/17] libgav1: Enable parser on arm32 as well Signed-off-by: Jeffy Chen --- third_party/libgav1/options.gni | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/third_party/libgav1/options.gni b/third_party/libgav1/options.gni index 5e0fe7ea3..bd6a4a572 100644 --- a/third_party/libgav1/options.gni +++ b/third_party/libgav1/options.gni @@ -13,5 +13,5 @@ declare_args() { use_libgav1_parser = (is_chromeos || is_linux || is_win) && (target_cpu == "x86" || target_cpu == "x64" || - target_cpu == "arm64" || target_cpu == "ppc64") + target_cpu == "arm" || target_cpu == "arm64" || target_cpu == "ppc64") } -- 2.20.1