ports/www/chromium/patches/patch-third_party_tflite_features_gni

13 lines
580 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
Index: third_party/tflite/features.gni
--- third_party/tflite/features.gni.orig
+++ third_party/tflite/features.gni
@@ -7,7 +7,7 @@ import("//build/config/chrome_build.gni")
declare_args() {
# This enables building TFLite with XNNPACK. Currently only available for
# Linux or Windows on x64.
- build_tflite_with_xnnpack = (is_win || is_linux) && current_cpu == "x64"
+ build_tflite_with_xnnpack = ((is_win || is_linux) && current_cpu == "x64") && !is_bsd
# Turns on TFLITE_WITH_RUY, using ruy as the gemm backend instead of gemmlowp.
build_tflite_with_ruy = true