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

Commit cc236a20 authored by Steven Moreland's avatar Steven Moreland Committed by Gerrit Code Review
Browse files

Merge "Disable libbinder darwin builds"

parents bf3ed6ca f856a98c
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -35,6 +35,11 @@ cc_library {
    vendor_available: true,
    double_loadable: true,
    host_supported: true,
    target: {
        darwin: {
            enabled: false,
        }
    },

    cflags: [
        "-Wall",
+8 −0
Original line number Diff line number Diff line
@@ -31,6 +31,11 @@ cc_library_headers {
        "libutils_headers",
    ],
    min_sdk_version: "29",
    target: {
        darwin: {
            enabled: false,
        },
    },
}

// These interfaces are android-specific implementation unrelated to binder
@@ -122,6 +127,9 @@ cc_library {
        vendor: {
            exclude_srcs: libbinder_device_interface_sources,
        },
        darwin: {
            enabled: false,
        },
    },

    aidl: {
+6 −0
Original line number Diff line number Diff line
@@ -26,6 +26,9 @@ cc_defaults {
                "-D__ANDROID_API__=10000",
            ],
        },
        darwin: {
            enabled: false,
        },
    },
}

@@ -84,6 +87,9 @@ cc_library {
        linux: {
            version_script: "libbinder_ndk.map.txt",
        },
        darwin: {
            enabled: false,
        },
    },
    stubs: {
        symbol_file: "libbinder_ndk.map.txt",
+5 −0
Original line number Diff line number Diff line
@@ -52,6 +52,11 @@ cc_fuzz {
cc_library_static {
    name: "libbinder_random_parcel",
    host_supported: true,
    target: {
        darwin: {
            enabled: false,
        }
    },
    srcs: [
        "random_fd.cpp",
        "random_parcel.cpp",
+13 −0
Original line number Diff line number Diff line
@@ -10,6 +10,11 @@ rust_library {
        "libbinder_ndk_sys",
    ],
    host_supported: true,
    target: {
        darwin: {
            enabled: false,
        }
    }
}

rust_library {
@@ -23,6 +28,11 @@ rust_library {
        "libbinder_ndk",
    ],
    host_supported: true,
    target: {
        darwin: {
            enabled: false,
        }
    }
}

rust_bindgen {
@@ -64,6 +74,9 @@ rust_bindgen {
                "-D__ANDROID_API__=10000",
            ],
        },
        darwin: {
            enabled: false,
        },
    },
}

Loading