Disable XOM in libjni_jpegutil.

Disable execute-only memory layouts in libjni_jpegutil.

This relies on libjpeg_static_ndk, which contains some data mixed into
code and thus requires a readable .text.

Bug: 77958880
Test: make -j libjni_jpegutil ENABLE_XOM=true
Test: readelf -l $OUT/system/lib64/libjni_jpegutil.so
Change-Id: I0ef011a3325e97174e5b8d36bc104c8d482354ec
diff --git a/jni/Android.mk b/jni/Android.mk
index 8e8de57..6798594 100644
--- a/jni/Android.mk
+++ b/jni/Android.mk
@@ -30,4 +30,7 @@
 LOCAL_CFLAGS += -Wall -Wextra -Werror
 LOCAL_ARM_MODE := arm
 
+# Remove when libjpeg_static_ndk is XOM compatible.
+LOCAL_XOM := false
+
 include $(BUILD_SHARED_LIBRARY)