load("@rules_cc//cc:cc_library.bzl", "cc_library") load("//tensorflow:tensorflow.default.bzl", "get_compatible_with_portable") package( # copybara:uncomment default_applicable_licenses = ["//tensorflow:LICENSE"], licenses = ["notice"], ) # We need special handling for JNI inclusion for Android. Rather than duplicating this logic # for every target that uses JNI, we use a single proxy target that # encapsulates it. alias( name = "jni", actual = select({ # The Android toolchain makes available in the system include # path. # Aliases need to resolve to a single target however, so alias to an # empty library instead. # (Making this target a cc_library with empty deps for the Android case # doesn't work, because go/cpp-features#layering-check requires targets # to _directly_ depend on libraries they include, and cc_library doesn't # have any direct equivalent to java_library's 'export' attribute). "//tensorflow:android": ":empty", # For non-Android toolchains, depend on the JDK JNI headers. "//conditions:default": "@bazel_tools//tools/jdk:jni", }), visibility = ["//visibility:public"], ) cc_library( name = "empty", compatible_with = get_compatible_with_portable(), )