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

Commit 68fd8263 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Merge "Add vendor dumpsys." am: f9a1f695 am: 8f5ad197

am: 86b86d8b

Change-Id: If9bf3b4dfb781f67ccb81f191bc62d720de9b53e
parents f5c95d01 86b86d8b
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -20,8 +20,6 @@ cc_defaults {
    static_libs: [
        "libserviceutils",
    ],

    clang: true,
}

//
@@ -36,7 +34,6 @@ cc_library_static {
    export_include_dirs: ["."],
}


//
// Executable
//
@@ -51,4 +48,15 @@ cc_binary {
    ],
}

subdirs = ["tests"]
cc_binary {
    name: "dumpsys_vendor",
    stem: "dumpsys",

    vendor: true,

    defaults: ["dumpsys_defaults"],

    srcs: [
        "main.cpp",
    ],
}
+10 −3
Original line number Diff line number Diff line
@@ -18,6 +18,8 @@
cc_library_static {
    name: "libserviceutils",

    vendor_available: true,

    cflags: [
        "-Wall",
        "-Werror",
@@ -27,8 +29,13 @@ cc_library_static {
        "PriorityDumper.cpp",
    ],

    clang: true,
    header_libs: [
        "libutils_headers",
    ],

    export_header_lib_headers: [
        "libutils_headers",
    ],

    export_include_dirs: ["include"],
}

subdirs = ["tests"]