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

Commit 5d258093 authored by Colin Cross's avatar Colin Cross Committed by android-build-merger
Browse files

Convert statsd_test and statsd_benchmark to proto lite am: e7908d7b am: 5742f9ff

am: 85201e02

Change-Id: Id99366ec5900c71ba712dbee99fbefb5b785b827
parents e4ae7ea0 85201e02
Loading
Loading
Loading
Loading
+12 −4
Original line number Diff line number Diff line
@@ -205,6 +205,10 @@ cc_test {
    ],

    srcs: [
        // atom_field_options.proto needs field_options.proto, but that is
        // not included in libprotobuf-cpp-lite, so compile it here.
        ":libprotobuf-internal-protos",

        "src/atom_field_options.proto",
        "src/atoms.proto",
        "src/stats_log.proto",
@@ -259,11 +263,11 @@ cc_test {
    ],

    proto: {
        type: "full",
        type: "lite",
        include_dirs: ["external/protobuf/src"],
    },

    shared_libs: ["libprotobuf-cpp-full"],
    shared_libs: ["libprotobuf-cpp-lite"],

}

@@ -276,6 +280,10 @@ cc_benchmark {
    defaults: ["statsd_defaults"],

    srcs: [
        // atom_field_options.proto needs field_options.proto, but that is
        // not included in libprotobuf-cpp-lite, so compile it here.
        ":libprotobuf-internal-protos",

        "src/atom_field_options.proto",
        "src/atoms.proto",
        "src/stats_log.proto",
@@ -290,7 +298,7 @@ cc_benchmark {
    ],

    proto: {
        type: "full",
        type: "lite",
        include_dirs: ["external/protobuf/src"],
    },

@@ -312,7 +320,7 @@ cc_benchmark {
    shared_libs: [
        "libgtest_prod",
        "libstatslog",
        "libprotobuf-cpp-full",
        "libprotobuf-cpp-lite",
    ],
}