• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1workspace(name = "rules_android")
2
3load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
4load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
5load(":android_sdk_supplemental_repository.bzl", "android_sdk_supplemental_repository")
6
7maybe(
8    android_sdk_repository,
9    name = "androidsdk",
10)
11
12maybe(
13    android_ndk_repository,
14    name = "androidndk",
15)
16
17# This can be removed once https://github.com/bazelbuild/bazel/commit/773b50f979b8f40e73cf547049bb8e1114fb670a
18# is released, or android_sdk_repository is properly Starlarkified and dexdump
19# added there.
20android_sdk_supplemental_repository(name = "androidsdk-supplemental")