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

Commit c0f56551 authored by Ivan Lozano's avatar Ivan Lozano
Browse files

Update rust_protobuf proto property.

The 'proto' property is being renamed to 'protos' to reflect that
multiple protos can now be provided.

Bug: 171361369
Test: mma
Change-Id: I1d2e447c6b58e642b47bebef4cd246bd35e68bbc
parent a905cb0d
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -766,7 +766,7 @@ cc_library_host_shared {
rust_grpcio {
    name: "libbt_hci_proto",
    crate_name: "bt_hci_proto",
    proto: "hci/facade/facade.proto",
    protos: ["hci/facade/facade.proto"],
    source_stem: "facade",
    host_supported: true,
}
@@ -774,7 +774,7 @@ rust_grpcio {
rust_grpcio {
    name: "libbt_hal_proto",
    crate_name: "bt_hal_proto",
    proto: "hal/facade.proto",
    protos: ["hal/facade.proto"],
    source_stem: "facade",
    host_supported: true,
}
@@ -782,16 +782,16 @@ rust_grpcio {
rust_protobuf {
    name: "libbt_facade_rootservice_proto",
    crate_name: "bt_facade_rootservice_proto",
    proto: "facade/rootservice.proto",
    proto_flags: ["-Iexternal/protobuf/src/"],
    protos: ["facade/rootservice.proto"],
    source_stem: "rootservice",
    header_libs: ["libprotobuf-cpp-full"],
    host_supported: true,
}

rust_protobuf {
    name: "libbt_facade_common_proto",
    crate_name: "bt_facade_common_proto",
    proto: "facade/common.proto",
    protos: ["facade/common.proto"],
    source_stem: "common",
    host_supported: true,
}