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

Commit b7430e51 authored by Steven Moreland's avatar Steven Moreland Committed by Android (Google) Code Review
Browse files

Merge "*common: use package as name"

parents 042fec30 926aa80f
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
aidl_interface {
aidl_interface {
    name: "vintf-common",
    name: "android.hardware.common",
    host_supported: true,
    host_supported: true,
    vendor_available: true,
    vendor_available: true,
    vndk: {
    vndk: {
+2 −2
Original line number Original line Diff line number Diff line
aidl_interface {
aidl_interface {
    name: "vintf-graphics-common",
    name: "android.hardware.graphics.common",
    host_supported: true,
    host_supported: true,
    vendor_available: true,
    vendor_available: true,
    vndk: {
    vndk: {
@@ -11,7 +11,7 @@ aidl_interface {
    ],
    ],
    stability: "vintf",
    stability: "vintf",
    imports: [
    imports: [
        "vintf-common"
        "android.hardware.common",
    ],
    ],
    backend: {
    backend: {
        java: {
        java: {
+5 −2
Original line number Original line Diff line number Diff line
@@ -19,10 +19,10 @@ cc_test {
    defaults: ["VtsHalTargetTestDefaults"],
    defaults: ["VtsHalTargetTestDefaults"],
    srcs: ["VtsHalGraphicsMapperV4_0TargetTest.cpp"],
    srcs: ["VtsHalGraphicsMapperV4_0TargetTest.cpp"],
    static_libs: [
    static_libs: [
        "android.hardware.graphics.common-ndk_platform",
        "android.hardware.graphics.mapper@4.0-vts",
        "android.hardware.graphics.mapper@4.0-vts",
        "libgralloctypes",
        "libgralloctypes",
        "libsync",
        "libsync",
        "vintf-graphics-common-ndk_platform",
    ],
    ],
    shared_libs: [
    shared_libs: [
        "android.hardware.graphics.allocator@4.0",
        "android.hardware.graphics.allocator@4.0",
@@ -34,5 +34,8 @@ cc_test {
    header_libs: [
    header_libs: [
        "libsystem_headers",
        "libsystem_headers",
    ],
    ],
    test_suites: ["general-tests", "vts-core"],
    test_suites: [
        "general-tests",
        "vts-core",
    ],
}
}