aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/java/apkbuilder/BUILD.tools
blob: 580ada40d29a566348df620268ebe2426c846e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# The build file for apkbuilder when it's in bazel's embedded tools repo.

licenses(["notice"])  # Apache 2.0

java_binary(
    name = "embedded_apkbuilder",
    main_class = "com.android.sdklib.build.ApkBuilderMain",
    runtime_deps = [":apkbuilder_deploy_jar"],
    visibility = ["//visibility:public"],
)

java_import(
    name = "apkbuilder_deploy_jar",
    jars = [":apkbuilder_deploy.jar"]
)