Fixing protoOutParams concatenation.

ParseGeneratorParameter delimits based on commas, not colons:
external/protobuf/src/google/protobuf/compiler/code_generator.cc

Bug: 72570104
Test: flash device with new build
Change-Id: I00042782a718d288ca6b0cb78f856d0fb223a926
This commit is contained in:
Kweku Adams
2018-04-05 17:48:32 -07:00
parent 51ba4a7970
commit fb5b31ce96
2 changed files with 2 additions and 2 deletions

View File

@@ -115,7 +115,7 @@ func protoFlags(ctx ModuleContext, flags Flags, p *android.ProtoProperties) Flag
flags.protoFlags = android.ProtoFlags(ctx, p)
if proptools.String(p.Proto.Type) == "lite" {
flags.protoOutParams = []string{"lite"}
flags.protoOutParams = append(flags.protoOutParams, "lite")
}
return flags