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

Commit 47a79db9 authored by Jeffrey Huang's avatar Jeffrey Huang Committed by Android (Google) Code Review
Browse files

Merge "Add apex_available to libs"

parents 7eb2bf5f b0a85dc4
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -29,12 +29,14 @@ cc_library_shared {
    export_include_dirs: ["include"],
    shared_libs: [
        "libbinder_ndk",
        "libstatssocket",
        "liblog",
        "statsd-aidl-ndk_platform",
    ],
    static_libs: [
        "liblog",
        "libutils",
        // TODO(b/149340100): Clean this up when libstatssocket is moved to the apex.
        "libstatssocket",
        "libcutils",
    ],
    // enumerate stable entry points for APEX use
    stubs: {
@@ -43,4 +45,8 @@ cc_library_shared {
            "30",
        ],
    },
    apex_available: [
        "com.android.os.statsd",
        "test_com.android.os.statsd",
    ],
}
+7 −1
Original line number Diff line number Diff line
@@ -47,7 +47,13 @@ cc_library {
        versions: [
            "30",
        ],
    }
    },
    apex_available: [
        "com.android.os.statsd",
        "test_com.android.os.statsd",
        //TODO(b/149340100): Remove this once libstatssocket is only linked as shared.
        "//apex_available:platform",
    ],
}

cc_library_headers {