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

Commit 20516da9 authored by Ruchir Rastogi's avatar Ruchir Rastogi
Browse files

Merge libstatspush_compat and libstatssocket_q

This cleanup makes it clear that there are only two acceptable ways of
logging to the socket: either through libstatspush_compat or
libstatssocket (which will soon be renamed to libstatspush).

Test: m -j
Change-Id: I467b08bc300c2ef394b22422c6acf55a978a380a
Merged-In: I6a49b4995b56df462e1be901ea5e54acfe2e8bac
parent 79dd3eaa
Loading
Loading
Loading
Loading
+8 −3
Original line number Diff line number Diff line
@@ -21,17 +21,22 @@
// =========================================================================
cc_defaults {
    name: "libstatspush_compat_defaults",
    srcs: ["StatsEventCompat.cpp"],
    srcs: [
        "statsd_writer.c",
        "stats_event_list.c",
        "StatsEventCompat.cpp"
    ],
    cflags: [
        "-Wall",
        "-Werror",
        "-DWRITE_TO_STATSD=1",
        "-DWRITE_TO_LOGD=0",
    ],
    header_libs: ["libstatssocket_headers"],
    static_libs: [
        "libbase",
        "liblog",
        "libstatssocket_q",
        "libutils"
        "libutils",
    ],
}

Loading