ANDROID: Fix DDK include dirs for arm.
It is a typo to put arch/arm64/include/*
in the include dirs.
Test: treehugger
Bug: 254735056
Change-Id: I151786b6c6ab3397a2eb829e3c86cc3303ff0ceb
Signed-off-by: Yifan Hong <elsk@google.com>
diff --git a/BUILD.bazel b/BUILD.bazel
index 61218e4..556abef 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -437,8 +437,8 @@
# from. In other words, these are the `-I` option to the C compiler.
# These are prepended to LINUXINCLUDE.
linux_includes = [
- "arch/arm64/include",
- "arch/arm64/include/uapi",
+ "arch/arm/include",
+ "arch/arm/include/uapi",
"include",
"include/uapi",
],