Revert "Convert statsd_test and statsd_benchmark to proto lite" am: 47046b80d2

am: 65200cf70e

Change-Id: I952a9cbcb9bf9d2d479efecc28c5411e31dc9cf6
This commit is contained in:
Colin Cross
2018-11-06 11:15:44 -08:00
committed by android-build-merger

View File

@@ -196,10 +196,6 @@ cc_test {
], ],
srcs: [ 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/atom_field_options.proto",
"src/atoms.proto", "src/atoms.proto",
"src/stats_log.proto", "src/stats_log.proto",
@@ -249,11 +245,11 @@ cc_test {
static_libs: ["libgmock"], static_libs: ["libgmock"],
proto: { proto: {
type: "lite", type: "full",
include_dirs: ["external/protobuf/src"], include_dirs: ["external/protobuf/src"],
}, },
shared_libs: ["libprotobuf-cpp-lite"], shared_libs: ["libprotobuf-cpp-full"],
} }
@@ -266,10 +262,6 @@ cc_benchmark {
defaults: ["statsd_defaults"], defaults: ["statsd_defaults"],
srcs: [ 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/atom_field_options.proto",
"src/atoms.proto", "src/atoms.proto",
"src/stats_log.proto", "src/stats_log.proto",
@@ -284,7 +276,7 @@ cc_benchmark {
], ],
proto: { proto: {
type: "lite", type: "full",
include_dirs: ["external/protobuf/src"], include_dirs: ["external/protobuf/src"],
}, },
@@ -302,7 +294,7 @@ cc_benchmark {
shared_libs: [ shared_libs: [
"libgtest_prod", "libgtest_prod",
"libstatslog", "libstatslog",
"libprotobuf-cpp-lite", "libprotobuf-cpp-full",
], ],
} }