aboutsummaryrefslogtreecommitdiff
path: root/examples/src/main/native/BUILD.bazel
diff options
context:
space:
mode:
authorFabian Meumertzheim <meumertzheim@code-intelligence.com>2021-05-05 14:29:11 +0200
committerFabian Meumertzheim <fabian@meumertzhe.im>2021-05-06 09:24:13 +0200
commit7000c31795a656c721cc282107029218be6360f2 (patch)
treee3eeb56d2a0f2047e58ce15db9edf4750702e0da /examples/src/main/native/BUILD.bazel
parentbcd0b468db0ee51d9e31a0c8f912a59f005e2683 (diff)
downloadjazzer-api-7000c31795a656c721cc282107029218be6360f2.tar.gz
Simplify Bazel handling of JNI headers
Use a Bazel provided target for the JNI headers instead of a custom one.
Diffstat (limited to 'examples/src/main/native/BUILD.bazel')
-rw-r--r--examples/src/main/native/BUILD.bazel2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/src/main/native/BUILD.bazel b/examples/src/main/native/BUILD.bazel
index 11a6a740..16b48419 100644
--- a/examples/src/main/native/BUILD.bazel
+++ b/examples/src/main/native/BUILD.bazel
@@ -15,6 +15,6 @@ cc_binary(
linkshared = True,
visibility = ["//examples:__pkg__"],
deps = [
- "//third_party/jni:jni_headers_only",
+ "@bazel_tools//tools/jdk:jni",
],
)