hc
2023-11-20 2e7bd41e4e8ab3d1efdabd9e263a2f7fe79bff8c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
From a14a9fb3f75ddc8df074b3773c7ed837cddf373c Mon Sep 17 00:00:00 2001
From: Jeffy Chen <jeffy.chen@rock-chips.com>
Date: Tue, 6 Sep 2022 18:24:32 +0800
Subject: [PATCH] libgav1: Enable parser on arm32 as well
 
Signed-off-by: Jeffy Chen <jeffy.chen@rock-chips.com>
---
 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