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

Commit e8d945bc authored by David Duarte's avatar David Duarte Committed by Gerrit Code Review
Browse files

Revert "Factor out the fuzz config in bp files"

This reverts commit 066366a6.

Reason for revert: Merged with unresolved comments

Change-Id: I8c0966def6ac118597c8343ec8d0cae8c42beda2
parent 066366a6
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -25,9 +25,6 @@ package {

cc_defaults {
    name: "libbt_audio_hal_interface_fuzz_defaults",
    defaults: [
        "fluoride_common_fuzz_defaults",
    ],
    header_libs: [
        "avrcp_headers",
        "libbluetooth_headers",
@@ -106,6 +103,10 @@ cc_defaults {
    cflags: [
        "-DHAS_NO_BDROID_BUILDCFG",
    ],
    fuzz_config: {
        cc: ["android-bluetooth-security@google.com"],
        componentid: 27441,
    },
}

cc_fuzz {
+4 −3
Original line number Diff line number Diff line
@@ -25,9 +25,6 @@ package {

cc_defaults {
    name: "btcore_fuzz_defaults",
    defaults: [
        "fluoride_common_fuzz_defaults",
    ],
    shared_libs: [
        "android.hardware.bluetooth@1.0",
        "android.hardware.bluetooth@1.1",
@@ -59,6 +56,10 @@ cc_defaults {
    header_libs: [
        "libbluetooth_headers",
    ],
    fuzz_config: {
        cc: ["android-bluetooth-security@google.com"],
        componentid: 27441,
    },
}

cc_fuzz {
+0 −11
Original line number Diff line number Diff line
@@ -107,17 +107,6 @@ fluoride_defaults {
    },
}

// common options for all fuzzers
// e.g., sanitizers, cflags
// TODO: factorout the satnizer flags 
cc_defaults {
    name: "fluoride_common_fuzz_defaults",
    fuzz_config: {
        cc: ["android-bluetooth-security@google.com"],
        componentid: 27441,
    },
}

fluoride_defaults {
    name: "fluoride_types_defaults",
    defaults: [
+5 −4
Original line number Diff line number Diff line
@@ -25,10 +25,7 @@ package {

cc_fuzz {
    name: "btdevice_esco_fuzzer",
    defaults: [
        "fluoride_defaults",
        "fluoride_common_fuzz_defaults",
    ],
    defaults: ["fluoride_defaults"],
    srcs: [
        "btdevice_esco_fuzzer.cpp",
    ],
@@ -49,4 +46,8 @@ cc_fuzz {
    cflags: [
        "-DBUILDCFG",
    ],
    fuzz_config: {
       cc: ["android-bluetooth-security@google.com"],
       componentid: 27441,
    },
}
+4 −3
Original line number Diff line number Diff line
@@ -9,9 +9,6 @@ package {

cc_fuzz {
    name: "g722_fuzzer",
    defaults: [
        "fluoride_common_fuzz_defaults",
    ],
    srcs: [
        "g722_fuzzer.cc",
    ],
@@ -19,4 +16,8 @@ cc_fuzz {
    static_libs: [
        "libg722codec",
    ],
    fuzz_config: {
        cc: ["android-bluetooth-security@google.com"],
        componentid: 27441,
    },
}
Loading