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

Commit 12a9575c 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
parent 776d49b1
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -55,14 +55,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
@@ -44,7 +44,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",
            ],
        },
        {
@@ -54,7 +54,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",
            ],
        },
        {
@@ -64,7 +64,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
@@ -64,14 +64,14 @@ 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",
    ],
}

@@ -80,7 +80,7 @@ cc_defaults {
    target: {
        linux: {
            static_libs: [
                "android.hardware.graphics.common-V5-ndk",
                "android.hardware.graphics.common-V6-ndk",
            ],
        },
    },
@@ -91,7 +91,7 @@ cc_defaults {
    target: {
        linux: {
            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
@@ -59,21 +59,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