Merge "Fix cc_fuzz ignoring soong namespaces."

am: 5eb62bc2fe

Change-Id: I36c2f67b2e28bfb2f299d7417651188b9cefffff
This commit is contained in:
Mitch Phillips
2019-12-05 13:46:19 -08:00
committed by android-build-merger

View File

@@ -345,6 +345,11 @@ func (s *fuzzPackager) GenerateBuildActions(ctx android.SingletonContext) {
return
}
// Discard modules that are in an unavailable namespace.
if !ccModule.ExportedToMake() {
return
}
s.fuzzTargets[module.Name()] = true
hostOrTargetString := "target"