1
0
mirror of https://github.com/google/comprehensive-rust.git synced 2025-04-20 15:08:02 +02:00

Use jni_libs for JNI dependency (#2637)

This commit is contained in:
Nicole L 2025-02-26 09:06:09 -08:00 committed by GitHub
parent a10b4e6e21
commit 7f8596e9bc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -12,6 +12,6 @@ java_binary {
name: "helloworld_jni",
srcs: ["HelloWorld.java"],
main_class: "HelloWorld",
required: ["libhello_jni"],
jni_libs: ["libhello_jni"],
}
// ANCHOR_END: helloworld_jni