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

Commit 4b24f091 authored by Josh Gao's avatar Josh Gao Committed by Gerrit Code Review
Browse files

Merge "Expose libtombstone_proto srcs."

parents 4b3f556e d3df0ae3
Loading
Loading
Loading
Loading
+11 −4
Original line number Diff line number Diff line
cc_library {
filegroup {
    name: "libtombstone_proto-src",
    srcs: ["tombstone.proto"],
}

cc_library_static {
    name: "libtombstone_proto",
    cflags: [
        "-Wall",
@@ -14,9 +19,11 @@ cc_library {
        type: "lite",
    },

    srcs: [
        "tombstone.proto",
    ],
    srcs: [":libtombstone_proto-src"],

    // b/155341058: Soong doesn't automatically add libprotobuf if there aren't any explicitly
    // listed protos in srcs.
    static_libs: ["libprotobuf-cpp-lite"],

    stl: "libc++_static",
    apex_available: [
+3 −0
Original line number Diff line number Diff line
syntax = "proto3";

option java_package = "com.android.server.os";
option java_outer_classname = "TombstoneProtos";

message Tombstone {
  Architecture arch = 1;
  string build_fingerprint = 2;