Commit be9b75cb authored by Adam Kallai's avatar Adam Kallai Committed by Chromium LUCI CQ

Fix compilation error on Windows on ARM

Disable build_with_tflite_lib on Windows on ARM as a workaround
until it is fixed generally.

Bug: chromium:1169611
Change-Id: I305a053fcf724783c31491a225eb4e4c28733ec2
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/2643387Reviewed-by: default avatarMichael Crouse <mcrouse@chromium.org>
Commit-Queue: Richard Townsend <richard.townsend@arm.com>
Cr-Commit-Position: refs/heads/master@{#846210}
parent 959afbd6
...@@ -5,6 +5,8 @@ ...@@ -5,6 +5,8 @@
declare_args() { declare_args() {
# This enables build with TFLite library. # This enables build with TFLite library.
# Currently only available for Desktop and Android. # Currently only available for Desktop and Android.
build_with_tflite_lib = # Disable tflite build on Windows on ARM
is_android || is_win || is_linux || is_mac || is_chromeos # http://crbug.com/1169611
build_with_tflite_lib = is_android || (is_win && target_cpu != "arm64") ||
is_linux || is_mac || is_chromeos
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment