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

Commit ca31d800 authored by Eino-Ville Talvala's avatar Eino-Ville Talvala
Browse files

Graphics: Migrate graphics.common HAL to version 6

- Update defaults to V6 instead of V5
- Update older dependent HALs to also reference V6

Test: Builds
Flag: EXEMPT build change
Bug: 368395888
Change-Id: I542c1c638b9d63c2510b11d04d6ed98477780af7
Merged-In: I542c1c638b9d63c2510b11d04d6ed98477780af7
parent b7ba9a5d
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -52,14 +52,14 @@ aidl_interface {
            version: "1",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },
        {
            version: "2",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },

+3 −3
Original line number Diff line number Diff line
@@ -40,7 +40,7 @@ aidl_interface {
                "android.hardware.common.fmq-V1",
                "android.hardware.camera.common-V1",
                "android.hardware.camera.metadata-V1",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },
        {
@@ -50,7 +50,7 @@ aidl_interface {
                "android.hardware.common.fmq-V1",
                "android.hardware.camera.common-V1",
                "android.hardware.camera.metadata-V2",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },
        {
@@ -60,7 +60,7 @@ aidl_interface {
                "android.hardware.common.fmq-V1",
                "android.hardware.camera.common-V1",
                "android.hardware.camera.metadata-V3",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },

+4 −4
Original line number Diff line number Diff line
@@ -56,28 +56,28 @@ cc_defaults {
aidl_interface_defaults {
    name: "android.hardware.graphics.common-latest",
    imports: [
        "android.hardware.graphics.common-V5",
        "android.hardware.graphics.common-V6",
    ],
}

rust_defaults {
    name: "android.hardware.graphics.common-latest-rust",
    rustlibs: [
        "android.hardware.graphics.common-V5-rust",
        "android.hardware.graphics.common-V6-rust",
    ],
}

cc_defaults {
    name: "android.hardware.graphics.common-ndk_static",
    static_libs: [
        "android.hardware.graphics.common-V5-ndk",
        "android.hardware.graphics.common-V6-ndk",
    ],
}

cc_defaults {
    name: "android.hardware.graphics.common-ndk_shared",
    shared_libs: [
        "android.hardware.graphics.common-V5-ndk",
        "android.hardware.graphics.common-V6-ndk",
    ],
}

+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@ aidl_interface {
            version: "2",
            imports: [
                "android.hardware.common-V2",
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
            ],
        },

+3 −3
Original line number Diff line number Diff line
@@ -58,21 +58,21 @@ aidl_interface {
        {
            version: "1",
            imports: [
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
                "android.hardware.common-V2",
            ],
        },
        {
            version: "2",
            imports: [
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
                "android.hardware.common-V2",
            ],
        },
        {
            version: "3",
            imports: [
                "android.hardware.graphics.common-V5",
                "android.hardware.graphics.common-V6",
                "android.hardware.common-V2",
            ],
        },
Loading