Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit deee1119 authored by yangbill's avatar yangbill
Browse files

Convert keyboards artifacts to soong

This CL still keep PRODUCT_COPY_FILE for the original system image
packaging for Make, but create 3 soong's modules which could be used for
soong generated system images.

Bug: 337993945
Test: lunch aosp_cf_x86_64_only_phone-trunk_staging-userdebug ;\
      m aosp_cf_system_x86_64 ; m
Test: lunch yukawa-trunk_staging-userdebug ; m
Change-Id: Ie749de99273f85623861a001e69a9c4187cc8067
parent ca3da5d1
Loading
Loading
Loading
Loading
+24 −0
Original line number Diff line number Diff line
@@ -27,3 +27,27 @@ genrule {
        targets: ["droidcore"],
    },
}

prebuilt_usr_keylayout {
    name: "keylayout_data",
    srcs: [
        "*.kl",
    ],
    installable: false,
}

prebuilt_usr_keychars {
    name: "keychars_data",
    srcs: [
        "*.kcm",
    ],
    installable: false,
}

prebuilt_usr_idc {
    name: "idc_data",
    srcs: [
        "*.idc",
    ],
    installable: false,
}