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

Commit b1ce7653 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

release-request-e204d718-da41-4e1e-bacd-c823491d6b52-for-git_oc-dr1-release-41...

release-request-e204d718-da41-4e1e-bacd-c823491d6b52-for-git_oc-dr1-release-4124654 snap-temp-L59700000076596226

Change-Id: I3a61e6ad44458b96b8eafa08e700740d17de03ae
parents f9ada0a2 8976c6ae
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -126,7 +126,8 @@ static const std::string ZIP_ROOT_DIR = "FS";
static const std::string kDumpstateBoardPath = "/bugreports/";
static const std::string kDumpstateBoardFiles[] = {
    "dumpstate_board.txt",
    "dumpstate_board.bin"
    // TODO: rename to dumpstate_board.bin once vendors can handle it
    "modem_log_all.tar"
};
static const int NUM_OF_DUMPS = arraysize(kDumpstateBoardFiles);

+4 −0
Original line number Diff line number Diff line
@@ -287,7 +287,11 @@ int svcmgr_handler(struct binder_state *bs,
    }

    if (sehandle && selinux_status_updated() > 0) {
#ifdef VENDORSERVICEMANAGER
        struct selabel_handle *tmp_sehandle = selinux_android_vendor_service_context_handle();
#else
        struct selabel_handle *tmp_sehandle = selinux_android_service_context_handle();
#endif
        if (tmp_sehandle) {
            selabel_close(sehandle);
            sehandle = tmp_sehandle;

include/gui

0 → 120000
+1 −0
Original line number Diff line number Diff line
../libs/gui/include/gui
 No newline at end of file

include/private/gui

0 → 120000
+1 −0
Original line number Diff line number Diff line
../../libs/gui/include/private/gui
 No newline at end of file
+8 −2
Original line number Diff line number Diff line
@@ -15,6 +15,7 @@
cc_library_headers {
    name: "libbinder_headers",
    export_include_dirs: ["include"],
    vendor_available: true,
}

cc_library {
@@ -74,13 +75,18 @@ cc_library {
        "libcutils",
        "libutils",
    ],

    header_libs: [
        "libbinder_headers",
    ],

    export_shared_lib_headers: [
        "libbase",
        "libutils",
    ],

    export_include_dirs: [
        "include",
    export_header_lib_headers: [
        "libbinder_headers",
    ],

    clang: true,
Loading