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

Commit 5d3d10e2 authored by Liz Kammer's avatar Liz Kammer Committed by Automerger Merge Worker
Browse files

Merge "Ensure reported unconverted deps are unique" am: b7d18efc am: acec4802

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1920688

Change-Id: I04475596d7ceeed8f0ca103b3a402729327128ae
parents 5f4df317 acec4802
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1290,7 +1290,7 @@ func (b *baseModuleContext) AddUnconvertedBp2buildDep(dep string) {
// GetUnconvertedBp2buildDeps returns the list of module names of this module's direct dependencies that
// were not converted to Bazel.
func (m *ModuleBase) GetUnconvertedBp2buildDeps() []string {
	return m.commonProperties.UnconvertedBp2buildDeps
	return FirstUniqueStrings(m.commonProperties.UnconvertedBp2buildDeps)
}

func (m *ModuleBase) AddJSONData(d *map[string]interface{}) {