From 0c2c523e20018495ef2b150154487697b7511901 Mon Sep 17 00:00:00 2001 From: Rebecca Chang Swee Fun Date: Fri, 14 Jan 2022 01:04:19 +0000 Subject: [PATCH 13/68] skia: add riscv64 architecture detection Signed-off-by: Rebecca Chang Swee Fun --- skia/BUILD.gn | 2 ++ 1 file changed, 2 insertions(+) diff --git a/skia/BUILD.gn b/skia/BUILD.gn index 5c3a90ee7fcd..daea4ff50a4b 100644 --- a/skia/BUILD.gn +++ b/skia/BUILD.gn @@ -809,6 +809,8 @@ skia_source_set("skia_opts") { sources = skia_opts.none_sources } else if (current_cpu == "s390x") { sources = skia_opts.none_sources + } else if (current_cpu == "riscv64") { + sources = skia_opts.none_sources } else { assert(false, "Need to port cpu specific stuff from skia_library_opts.gyp") } -- 2.30.2