blob: 7d5d1a514ee6d15c263fae4d4a0927c818a8f0e2 [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
filegroup(
name = "jdk",
srcs = glob(["**"]),
)
# Nothing should depend on this library on windows.
cc_library(
name = "jni_headers",
srcs = [],
hdrs = select({
"//tools/base/bazel:darwin": glob(["mac/Contents/Home/include/**/*.h"]),
"//conditions:default": glob(["linux/include/**/*.h"]),
}),
includes = select({
"//tools/base/bazel:darwin": [
"mac/Contents/Home/include",
"mac/Contents/Home/include/darwin",
],
"//conditions:default": [
"linux/include",
"linux/include/linux",
]
})
)