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

Commit 584871b6 authored by Eino-Ville Talvala (Eddy)'s avatar Eino-Ville Talvala (Eddy) Committed by Gerrit Code Review
Browse files

Merge "Graphics: Migrate graphics.common HAL to version 6" into main

parents 408d387e ca31d800
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