Files
rk35xx-android14/external/bazelbuild-rules_android/toolchains/android_sdk/BUILD
T
hmz007 36ed224bac Rockchip Anroid14_SDK 20240628-rkr5 (2556df1a)
Signed-off-by: hmz007 <hmz007@gmail.com>
Change-Id: Ib87fdbe7a0be7dc961af3500fe9ea4589a127f9f
2024-10-29 18:12:02 +08:00

34 lines
841 B
Python

# Description:
# Defines the Android SDK toolchain.
licenses(["notice"])
filegroup(
name = "all_files",
srcs = glob(["**"]),
)
# Android SDK Toolchain Type
toolchain_type(
name = "toolchain_type",
visibility = ["//visibility:public"],
)
toolchain(
name = "android_sdk_tools",
# This causes the toolchain to not be selected under arm, so
# disable for now.
# To be refined as part of https://github.com/bazelbuild/rules_android/issues/72
#exec_compatible_with = [
# "@platforms//cpu:x86_64",
# "@platforms//os:linux",
#],
# TODO(b/175833893): This causes the toolchain to not be selected, so
# disable for now.
#target_compatible_with = [
# "@bazel_tools//platforms:android",
#],
toolchain = "@androidsdk//:sdk",
toolchain_type = ":toolchain_type",
)