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

Commit 398f7a17 authored by Josh Gao's avatar Josh Gao Committed by Automerger Merge Worker
Browse files

Merge "Expose libtombstone_proto srcs." am: 4b24f091

Original change: https://android-review.googlesource.com/c/platform/system/core/+/1567645

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I4cf9722f1c72ce42785b44533dbd92db30c81b2f
parents f4096e19 4b24f091
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;