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

Commit d2f1094c authored by Chih-hung Hsieh's avatar Chih-hung Hsieh Committed by android-build-merger
Browse files

Merge "Use -Werror in frameworks/native/services/inputflinger" am: 4d6bb5a8...

Merge "Use -Werror in frameworks/native/services/inputflinger" am: 4d6bb5a8 am: d1e64c72 am: a2977096
am: 6186fab9

Change-Id: Ic60bf0aab6b032ef3b8d3f23886528fa1c06d796
parents 973df98c 6186fab9
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -32,6 +32,8 @@ cc_library_shared {
    ],

    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-unused-parameter",
        // TODO: Move inputflinger to its own process and mark it hidden
        //-fvisibility=hidden
@@ -47,6 +49,8 @@ cc_binary {

    srcs: ["main.cpp"],

    cflags: ["-Wall", "-Werror"],

    shared_libs: [
        "libbinder",
        "libinputflingerhost",
+5 −1
Original line number Diff line number Diff line
@@ -7,7 +7,11 @@ cc_test {
        "InputDispatcher_test.cpp",
    ],
    test_per_src: true,
    cflags: ["-Wno-unused-parameter"],
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-unused-parameter",
    ],
    shared_libs = [
        "libcutils",
        "liblog",