summaryrefslogtreecommitdiffstats
path: root/update_verifier/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'update_verifier/Android.bp')
-rw-r--r--update_verifier/Android.bp31
1 files changed, 30 insertions, 1 deletions
diff --git a/update_verifier/Android.bp b/update_verifier/Android.bp
index f4dc1f498..7a860a149 100644
--- a/update_verifier/Android.bp
+++ b/update_verifier/Android.bp
@@ -54,7 +54,7 @@ cc_library_static {
proto: {
type: "lite",
export_proto_headers: true,
- }
+ },
}
cc_binary {
@@ -88,3 +88,32 @@ cc_binary {
"update_verifier.rc",
],
}
+
+python_binary_host {
+ name: "care_map_generator",
+
+ srcs: [
+ "care_map_generator.py",
+ "care_map.proto",
+ ],
+ libs: [
+ "python-symbol",
+ // Soong won't add "libprotobuf-python" to the dependencies if
+ // filegroup contains .proto files. So add it here explicitly.
+ "libprotobuf-python",
+ ],
+ proto: {
+ canonical_path_from_root: false,
+ },
+
+ version: {
+ py2: {
+ enabled: true,
+ embedded_launcher: true,
+ },
+ py3: {
+ enabled: false,
+ embedded_launcher: false,
+ },
+ },
+}