• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright (C) 2018 The Android Open Source Project
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
15package {
16    default_applicable_licenses: ["Android-Apache-2.0"],
17}
18
19apexer_tools = [
20      "apexer",
21      "aapt2",
22      "avbtool",
23      "e2fsdroid",
24      "mke2fs",
25      "resize2fs",
26      "sefcontext_compile",
27      "zipalign",
28      "make_f2fs",
29      "sload_f2fs",
30      "make_erofs",
31      // TODO(b/124476339) apex doesn't follow 'required' dependencies so we need to include this
32      // manually for 'avbtool'.
33      "fec",
34]
35
36// TODO(b/157110982): cannot specify "required" dependency on go binary
37apexer_go_tools = [
38      "merge_zips",
39      "soong_zip",
40]
41
42python_library_host {
43    name: "apex_manifest",
44    srcs: [
45        "apex_manifest.py",
46    ],
47    libs: [
48        "apex_manifest_proto",
49    ],
50}
51
52// This is a hack to move mke2fs_conf into the current folder for bazel builds.
53// Normally bazel would keep it under a system/extras/ext4_utils/ folder.
54genrule {
55    name: "mke2fs_conf_for_apexer",
56    srcs: [":mke2fs_conf"],
57    out: ["mke2fs.conf"],
58    cmd: "cp $(in) $(out)"
59}
60
61python_binary_host {
62    name: "apexer",
63    srcs: [
64        "apexer.py",
65    ],
66    // TODO(b/157625953) mke2fs.conf can't embedded directly.
67    data: [
68        ":mke2fs_conf_for_apexer",
69    ],
70    version: {
71        py3: {
72            embedded_launcher: true,
73        },
74    },
75    libs: [
76        "apex_manifest",
77        "apex_build_info_proto",
78        "manifest_utils",
79    ],
80    required: apexer_tools,
81}
82
83python_binary_host {
84    name: "conv_apex_manifest",
85    srcs: [
86        "conv_apex_manifest.py",
87    ],
88    version: {
89        py3: {
90            embedded_launcher: true,
91        },
92    },
93    libs: [
94        "apex_manifest_proto",
95    ],
96}
97
98apex_key {
99  name: "com.android.support.apexer.key",
100  public_key: "etc/com.android.support.apexer.avbpubkey",
101  private_key: "etc/com.android.support.apexer.pem",
102}
103
104// This is a host-apex that contains all the binaries needed to create new apex's seprate from
105// soong.
106apex_test {
107  name: "com.android.support.apexer",
108  payload_type: "zip",
109  host_supported: true,
110  device_supported: false,
111  manifest: "etc/manifest.json",
112  ignore_system_library_special_case: true,
113  key: "com.android.support.apexer.key",
114  binaries: apexer_tools + apexer_go_tools,
115  updatable: false,
116}
117
118// TODO(b/148659029): this test can't run in TEST_MAPPING.
119python_test_host {
120    name: "apexer_test",
121    main: "apexer_test.py",
122    srcs: [
123        "apexer_test.py",
124    ],
125    data: [
126        ":com.android.example.apex",
127        ":com.android.example-legacy.apex",
128        ":com.android.example-logging_parent.apex",
129        ":com.android.example-overridden_package_name.apex",
130        ":apexer_test_host_tools",
131        "testdata/com.android.example.apex.avbpubkey",
132        "testdata/com.android.example.apex.pem",
133        "testdata/com.android.example.apex.pk8",
134        "testdata/com.android.example.apex.x509.pem",
135    ],
136    test_suites: ["general-tests"],
137    libs: [
138        "apex_manifest",
139    ],
140}
141
142apexer_deps_minus_go_tools = apexer_tools + [
143    "deapexer",
144    "debugfs_static",
145    "blkid",
146    "fsck.erofs",
147]
148
149apexer_deps_tools = apexer_deps_minus_go_tools + apexer_go_tools
150
151genrule_defaults {
152    name: "apexer_test_host_tools_list",
153    tools: apexer_deps_tools + [
154        "signapk",
155    ],
156}
157
158genrule {
159    name: "apexer_test_host_tools",
160    srcs: [
161        ":current_android_jar",
162    ],
163    out: ["apexer_test_host_tools.zip"],
164    tools: apexer_deps_tools + [
165        // To force signapk.jar generated in out/host
166        "signapk",
167        "bundletool",
168    ],
169    cmd: "HOST_OUT_BIN=$$(dirname $(location apexer)) && " +
170        "HOST_SOONG_OUT=$$(dirname $$HOST_OUT_BIN) && " +
171        "SIGNAPK_JAR=$$(find $${HOST_SOONG_OUT}/framework -name \"signapk*\") && " +
172        "BUNDLETOOL_JAR=$$(find $${HOST_SOONG_OUT}/framework -name \"bundletool*.jar\") && " +
173        "LIBCPLUSPLUS=$$(find $${HOST_SOONG_OUT}/lib64 -name \"libc++.*\") && " +
174        "LIBCONSCRYPT_OPENJDK_JNI=$$(find $${HOST_SOONG_OUT}/lib64 -name \"libconscrypt_openjdk_jni.*\") && " +
175        "BASE=$(genDir)/binary_files && " +
176        "BIN=$$BASE/bin && " +
177        "LIB=$$BASE/lib64 && " +
178        "mkdir -p $$BIN && " +
179        "mkdir -p $$LIB && " +
180        "cp $(in) $$BIN && " +
181        "cp $(location apexer) $$BIN && " +
182        "cp $(location deapexer) $$BIN && " +
183        "cp $(location avbtool) $$BIN && " +
184        "cp $(location aapt2) $$BIN && " +
185        "cp $(location e2fsdroid) $$BIN && " +
186        "cp $(location make_erofs) $$BIN && " +
187        "cp $(location merge_zips) $$BIN && " +
188        "cp $(location mke2fs) $$BIN && " +
189        "cp $(location resize2fs) $$BIN && " +
190        "cp $(location sefcontext_compile) $$BIN && " +
191        "cp $(location soong_zip) $$BIN && " +
192        "cp $(location fec) $$BIN && " +
193        "cp $(location zipalign) $$BIN && " +
194        "cp $(location debugfs_static) $$BIN && " +
195        "cp $(location blkid) $$BIN && " +
196        "cp $(location fsck.erofs) $$BIN && " +
197        "cp $$SIGNAPK_JAR $$BIN && " +
198        "cp $$BUNDLETOOL_JAR $$BIN && " +
199        "cp $$LIBCPLUSPLUS $$LIB && " +
200        "cp $$LIBCONSCRYPT_OPENJDK_JNI $$LIB && " +
201        "$(location soong_zip) -C $$BASE -D $$BASE -o $(out) && " +
202        "rm -rf $$BASE",
203}
204