Home
last modified time | relevance | path

Searched refs:DependencyOut (Results 1 – 2 of 2) sorted by relevance

/third_party/grpc/src/csharp/Grpc.Tools/
DProtoCompile.cs259 public string DependencyOut { get; set; } property in Grpc.Tools.ProtoCompile
342 if (ProtoDepDir != null && DependencyOut != null) in ValidateParameters()
347 if (Protobuf.Length > 1 && (ProtoDepDir != null || DependencyOut != null)) in ValidateParameters()
357DependencyOut = DepFileUtil.GetDepFilenameForProto(ProtoDepDir, Protobuf[0].ItemSpec); in ValidateParameters()
429 cmd.AddSwitchMaybe("dependency_out", DependencyOut); in GenerateResponseFileCommands()
548 if (DependencyOut != null) in Execute()
550 string[] outputs = DepFileUtil.ReadDependencyOutputs(DependencyOut, Log); in Execute()
561 AdditionalFileWrites = new ITaskItem[] { new TaskItem(DependencyOut) }; in Execute()
/third_party/grpc/src/csharp/Grpc.Tools.Tests/
DProtoCompileCommandLineGeneratorTest.cs96 _task.DependencyOut = "foo/my.protodep"; in OutputDependencyFile()