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

Commit c6e98a1a authored by Josh Gao's avatar Josh Gao Committed by android-build-merger
Browse files

Merge "crash_dump: fork a copy of the target's address space." am: 152bcf9b

am: 664de1b7

Change-Id: I27fa7a4da377d7ee50ad8c8a316e15e9943e4aa3
parents 795911f8 664de1b7
Loading
Loading
Loading
Loading
+6 −22
Original line number Diff line number Diff line
@@ -4,9 +4,12 @@ cc_defaults {
        "-Wall",
        "-Wextra",
        "-Werror",
        "-Wno-unused-argument",
        "-Wno-unused-function",
        "-Wno-nullability-completeness",
        "-Os",
    ],
    cpp_std: "gnu++17",

    local_include_dirs: ["include"],
}
@@ -73,6 +76,7 @@ cc_library_static {

    whole_static_libs: [
        "libasync_safe",
        "libcutils",
        "libdebuggerd",
    ],

@@ -148,27 +152,6 @@ cc_library_static {
        "libdebuggerd/utility.cpp",
    ],

    target: {
        android_arm: {
            srcs: ["libdebuggerd/arm/machine.cpp"],
        },
        android_arm64: {
            srcs: ["libdebuggerd/arm64/machine.cpp"],
        },
        android_mips: {
            srcs: ["libdebuggerd/mips/machine.cpp"],
        },
        android_mips64: {
            srcs: ["libdebuggerd/mips64/machine.cpp"],
        },
        android_x86: {
            srcs: ["libdebuggerd/x86/machine.cpp"],
        },
        android_x86_64: {
            srcs: ["libdebuggerd/x86_64/machine.cpp"],
        },
    },

    local_include_dirs: ["libdebuggerd/include"],
    export_include_dirs: ["libdebuggerd/include"],

@@ -193,7 +176,6 @@ cc_test {
        "libdebuggerd/test/elf_fake.cpp",
        "libdebuggerd/test/log_fake.cpp",
        "libdebuggerd/test/open_files_list_test.cpp",
        "libdebuggerd/test/ptrace_fake.cpp",
        "libdebuggerd/test/tombstone_test.cpp",
    ],

@@ -218,6 +200,7 @@ cc_test {

    static_libs: [
        "libdebuggerd",
        "libunwindstack",
    ],

    local_include_dirs: [
@@ -264,6 +247,7 @@ cc_binary {
        "libbase",
        "liblog",
        "libprocinfo",
        "libunwindstack",
    ],
}

Loading