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

Commit b86a132f authored by Dan Stoza's avatar Dan Stoza Committed by android-build-merger
Browse files

libbinder: Add SafeInterface

am: d630e520

Change-Id: I6791a3395bd1441902313778a7a22d8150f208e9
parents e6c177cd d630e520
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -71,6 +71,10 @@ cc_library {
        "libutils",
    ],

    export_include_dirs: [
        "include",
    ],

    clang: true,
    sanitize: {
        misc_undefined: ["integer"],
+621 −0

File added.

Preview size limit exceeded, changes collapsed.

+24 −0
Original line number Diff line number Diff line
@@ -80,3 +80,27 @@ cc_test {
        "libbase",
    ],
}

cc_test {
    name: "binderSafeInterfaceTest",
    srcs: ["binderSafeInterfaceTest.cpp"],

    cppflags: [
        "-Werror",
        "-Weverything",
        "-Wno-c++98-compat",
        "-Wno-c++98-compat-pedantic",
        "-Wno-global-constructors",
        "-Wno-padded",
        "-Wno-weak-vtables",
    ],

    cpp_std: "experimental",
    gnu_extensions: false,

    shared_libs: [
        "libbinder",
        "liblog",
        "libutils",
    ],
}
+514 −0

File added.

Preview size limit exceeded, changes collapsed.