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

Commit 18aa6d73 authored by Jahin Imtiaz's avatar Jahin Imtiaz Committed by Automerger Merge Worker
Browse files

Merge "Include module dependencies under `data`" am: 0a43a37c am: 2accab11...

Merge "Include module dependencies under `data`" am: 0a43a37c am: 2accab11 am: 748cecb7 am: d09663b5

Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2528320



Change-Id: Ibefa1c9432fbecaeb82c3b47fb82642c01e67371
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 7086129d d09663b5
Loading
Loading
Loading
Loading
+8 −7
Original line number Diff line number Diff line
@@ -23,6 +23,9 @@ rust_test {
    // this cannot be the same as the module name.
    stem: "rustBinderTestClientBinary",
    test_suites: ["general-tests"],
    data: [
        ":rustBinderTestService",
    ],
}

rust_test {
@@ -36,10 +39,6 @@ rust_test {
    // this cannot be the same as the module name.
    stem: "rustBinderTestServiceBinary",
    test_harness: false,
    // TODO(b/164473602): Remove this setting and add the module to `data`
    // attribute of rustBinderTest.
    auto_gen_config: false,
    test_suites: ["general-tests"],
}

cc_test {
@@ -100,7 +99,7 @@ cc_test {
        "libbase",
    ],
    static_libs: [
        "libbinder_rs_serialization_test"
        "libbinder_rs_serialization_test",
    ],
    srcs: [
        "serialization.cpp",
@@ -116,8 +115,10 @@ rust_bindgen {
    source_stem: "bindings",
    cpp_std: "gnu++17",
    bindgen_flags: [
        "--allowlist-type", "Transaction",
        "--allowlist-var", "TESTDATA_.*",
        "--allowlist-type",
        "Transaction",
        "--allowlist-var",
        "TESTDATA_.*",
    ],

    shared_libs: [