xref: /aosp_15_r20/external/bazelbuild-rules_android/mobile_install/dependency_map.bzl (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1# Copyright 2022 The Bazel Authors. All rights reserved.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7#    http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15"""This file keeps track of the locations of binaries for Mobile-Install."""
16
17versioned_deps = struct(
18    mi_shell_app = struct(
19        head = "//tools/android:gen_fail",
20    ),
21    android_kit = struct(
22        head = "//src/tools/ak",
23    ),
24    bootstraper = struct(
25        head = "//tools/android:gen_fail",
26    ),
27    deploy = struct(
28        head = "//src/tools/mi/deployment_oss:deploy_binary",
29    ),
30    deploy_info = struct(
31        head = "//tools/android:gen_fail",
32    ),
33    forwarder = struct(
34        head = "//tools/android:gen_fail",
35    ),
36    jar_tool = struct(
37        head = "@bazel_tools//tools/jdk:JavaBuilder_deploy.jar",
38    ),
39    make_sync = struct(
40        head = "//tools/android:gen_fail",
41    ),
42    merge_syncs = struct(
43        head = "//tools/android:gen_fail",
44    ),
45    pack_dexes = struct(
46        head = "//tools/android:gen_fail",
47    ),
48    pack_generic = struct(
49        head = "//tools/android:gen_fail",
50    ),
51    res_v3_dummy_manifest = struct(
52        head = "//rules:res_v3_dummy_AndroidManifest.xml",
53    ),
54    res_v3_dummy_r_txt = struct(
55        head = "//rules:res_v3_dummy_R.txt",
56    ),
57    resource_extractor = struct(
58        head = "//tools/android:gen_fail",
59    ),
60    sync_merger = struct(
61        head = "//tools/android:gen_fail",
62    ),
63)
64