From 859cdef88b917a31698310af7edf30fa06c2440e Mon Sep 17 00:00:00 2001 From: Spandan Das Date: Fri, 25 Oct 2024 21:06:18 +0000 Subject: Add vendor to list of supported partitions in gen_build_prop.py The kati built vendor.img will still use the kati built vendor build.prop file, but the soong built vendor.img will use an autogenerated `build_prop` module for vendor This CL should be a noop for now Bug: 374371755 Test: diff in contents for aosp_cf_x86_64_phone https://paste.googleplex.com/5766413037076480 Summary - timestamp change (expected) - ro.hwui.use_vulkan changes from "" to false, but I think this is functionally equivalent Test: presubmits Change-Id: I10bc5b6e8d48b86fa70d5ab0722fee658b1a224a --- scripts/gen_build_prop.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'scripts/gen_build_prop.py') diff --git a/scripts/gen_build_prop.py b/scripts/gen_build_prop.py index df9e98d1e..e0686ed19 100644 --- a/scripts/gen_build_prop.py +++ b/scripts/gen_build_prop.py @@ -524,7 +524,6 @@ def build_system_ext_prop(args): build_prop(args, gen_build_info=False, gen_common_build_props=True, variables=variables) -''' def build_vendor_prop(args): config = args.config @@ -541,7 +540,6 @@ def build_vendor_prop(args): ] build_prop(args, gen_build_info=False, gen_common_build_props=True, variables=variables) -''' def build_product_prop(args): config = args.config @@ -608,8 +606,8 @@ def main(): build_odm_prop(args) case "product": build_product_prop(args) - # case "vendor": # NOT IMPLEMENTED - # build_vendor_prop(args) + case "vendor": + build_vendor_prop(args) case _: sys.exit(f"not supported partition {args.partition}") -- cgit v1.2.3-59-g8ed1b