@@ -443,6 +443,7 @@ public struct PreviewInfoThunkInfo: Codable, Equatable, Sendable {
443443}
444444
445445public struct PreviewInfoTargetDependencyInfo : Codable , Equatable , Sendable {
446+ public let productModuleName : String
446447 public let objectFileInputMap : [ String : Set < String > ]
447448 public let linkCommandLine : [ String ]
448449 public let linkerWorkingDirectory : String ?
@@ -455,6 +456,7 @@ public struct PreviewInfoTargetDependencyInfo: Codable, Equatable, Sendable {
455456 public let enableUndefinedBehaviorSanitizer : Bool
456457
457458 public init (
459+ productModuleName: String ,
458460 objectFileInputMap: [ String : Set < String > ] ,
459461 linkCommandLine: [ String ] ,
460462 linkerWorkingDirectory: String ? ,
@@ -466,6 +468,7 @@ public struct PreviewInfoTargetDependencyInfo: Codable, Equatable, Sendable {
466468 enableThreadSanitizer: Bool ,
467469 enableUndefinedBehaviorSanitizer: Bool
468470 ) {
471+ self . productModuleName = productModuleName
469472 self . objectFileInputMap = objectFileInputMap
470473 self . linkCommandLine = linkCommandLine
471474 self . linkerWorkingDirectory = linkerWorkingDirectory
0 commit comments