blob: 8415ad080299528925dedaafef4d310da3785a8e [file] [log] [blame]
# Copyright (C) 2022 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load(
"//build/kernel/kleaf:constants.bzl",
"CI_TARGET_MAPPING",
"GKI_DOWNLOAD_CONFIGS",
)
load("//build/kernel/kleaf:download_repo.bzl", "download_artifacts_repo")
load("//build/kernel/kleaf:key_value_repo.bzl", "key_value_repo")
def define_kleaf_workspace(common_kernel_package = None):
if common_kernel_package == None:
common_kernel_package = "common"
native.local_repository(
name = "bazel_skylib",
path = "external/bazel-skylib",
)
native.local_repository(
name = "io_bazel_stardoc",
path = "external/stardoc",
)
# The prebuilt NDK does not support Bazel.
# https://docs.bazel.build/versions/main/external.html#non-bazel-projects
native.new_local_repository(
name = "prebuilt_ndk",
path = "prebuilts/ndk-r23",
build_file = "build/kernel/kleaf/ndk.BUILD",
)
key_value_repo(
name = "kernel_toolchain_info",
srcs = ["//{}:build.config.constants".format(common_kernel_package)],
additional_values = {
"common_kernel_package": common_kernel_package,
},
)
download_artifacts_repo(
name = "gki_prebuilts",
files = CI_TARGET_MAPPING["kernel_aarch64"]["outs"] +
[out for config in GKI_DOWNLOAD_CONFIGS for out in config["outs"]],
target = "kernel_kleaf",
)
native.register_toolchains(
"//prebuilts/build-tools:py_toolchain",
)