Home
last modified time | relevance | path

Searched refs:rspfile (Results 1 – 25 of 25) sorted by relevance

/third_party/flutter/skia/gn/
Dar.py14 ar, output, rspfile = sys.argv[1:] variable
20 sys.exit(subprocess.call([ar, "rcs", output, "@" + rspfile]))
23 objects = open(rspfile).read().split()
/third_party/flutter/skia/gn/toolchain/
DBUILD.gn108 rspfile = "{{output}}.rsp"
110 command = "$env_setup $lib /nologo /ignore:4221 {{arflags}} /OUT:{{output}} @$rspfile"
128 rspfile = "${dllname}.rsp"
130 command = "$env_setup $link /nologo /IMPLIB:$libname /DLL /OUT:$dllname /PDB:$pdbname @$rspfile"
157 rspfile = "$exename.rsp"
159 command = "$env_setup $link /nologo /OUT:$exename /PDB:$pdbname @$rspfile"
235 rspfile = "{{output}}.rsp"
238 command = "python $ar_py $ar {{output}} $rspfile"
254 rspfile = "{{output}}.rsp"
270 …command = "$cxx -shared {{ldflags}} $_start_group @$rspfile {{solibs}} $_end_group {{libs}} $rpath…
[all …]
/third_party/gn/examples/simple_build/build/toolchain/
DBUILD.gn37 rspfile = soname + ".rsp"
46 command = "g++ -shared {{ldflags}} -o $sofile $os_specific_option @$rspfile"
67 rspfile = "$outfile.rsp"
69 command = "g++ {{ldflags}} -o $outfile @$rspfile {{solibs}} {{libs}}"
71 …command = "g++ {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{li…
/third_party/skia/gn/toolchain/
DBUILD.gn158 rspfile = "{{output}}.rsp"
160 command = "$env_setup $lib /nologo /ignore:4221 {{arflags}} /OUT:{{output}} @$rspfile"
181 rspfile = "${dllname}.rsp"
183 command = "$env_setup $link /nologo /IMPLIB:$libname /DLL /OUT:$dllname /PDB:$pdbname @$rspfile"
213 rspfile = "$exename.rsp"
215 command = "$env_setup $link /nologo /OUT:$exename /PDB:$pdbname @$rspfile"
302 rspfile = "{{output}}.rsp"
305 command = "$shell python \"$rm_py\" \"{{output}}\" && $ar rcs {{output}} @$rspfile"
326 rspfile = "{{output}}.rsp"
342 …command = "$link -shared {{ldflags}} $_start_group @$rspfile {{frameworks}} {{solibs}} $_end_group…
[all …]
/third_party/glib/gobject/tests/
Dmkenums.py53 rspfile = False variable in TestMkenums
67 print("rspfile: {}, mkenums:".format(self.rspfile), self.__mkenums)
86 if self.rspfile:
87 rspfile = self._write_rspfile(args)
88 args = ["@" + rspfile]
735 rspfile = True variable in TestRspMkenums
/third_party/gn/examples/ios/build/toolchain/mac/
DBUILD.gn19 rspfile = output + ".rsp"
23 … command = "$cxx {{ldflags}} -o $output -Wl,-filelist,$rspfile {{libs}} {{solibs}} {{frameworks}}"
33 rspfile = dylib + ".rsp"
37 …command = "$cxx -dynamiclib {{ldflags}} -o $dylib -Wl,-filelist,$rspfile {{libs}} {{solibs}} {{fra…
/third_party/gn/examples/ios/build/toolchain/ios/
DBUILD.gn38 rspfile = output + ".rsp"
42 …command = "$cxx {{ldflags}} -o $output -Wl,-filelist,$rspfile {{libs}} {{solibs}} {{frameworks}} {…
52 rspfile = dylib + ".rsp"
56 …command = "$cxx -dynamiclib {{ldflags}} -o $dylib -Wl,-filelist,$rspfile {{libs}} {{solibs}} {{fra…
/third_party/gn/src/gn/
Dninja_action_target_writer.cc127 std::string rspfile = custom_rule_name; in WriteRuleDefinition() local
129 rspfile += ".$unique_name"; in WriteRuleDefinition()
130 rspfile += ".rsp"; in WriteRuleDefinition()
131 out_ << " rspfile = " << rspfile << std::endl; in WriteRuleDefinition()
Dninja_toolchain_writer.cc93 WriteRulePattern("rspfile", tool->rspfile(), options); in WriteToolRule()
Dtool.h202 const SubstitutionPattern& rspfile() const { return rspfile_; } in rspfile() function
Dfunction_toolchain.cc559 rspfile [string with substitutions]
576 rspfile = "{{output}}.rsp"
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
Dninja_syntax.py42 generator=False, pool=None, restat=False, rspfile=None, argument
56 if rspfile:
57 self.variable('rspfile', rspfile, indent=1)
Dwin_tool.py302 def ExecActionWrapper(self, arch, rspfile, *dir): argument
311 args = open(rspfile).read()
/third_party/node/tools/gyp/pylib/gyp/
Dninja_syntax.py51 rspfile=None, argument
67 if rspfile:
68 self.variable("rspfile", rspfile, indent=1)
Dwin_tool.py358 def ExecActionWrapper(self, arch, rspfile, *dir): argument
367 args = open(rspfile).read()
/third_party/ninja/misc/
Dninja_syntax.py55 generator=False, pool=None, restat=False, rspfile=None, argument
69 if rspfile:
70 self.variable('rspfile', rspfile, indent=1)
Dninja.vim47 \ pool restat rspfile rspfile_content
/third_party/ninja/src/
Dclean.cc82 string rspfile = edge->GetUnescapedRspfile(); in RemoveEdgeFiles() local
83 if (!rspfile.empty()) in RemoveEdgeFiles()
84 Remove(rspfile); in RemoveEdgeFiles()
Dbuild.cc916 string rspfile = edge->GetUnescapedRspfile(); in StartEdge() local
917 if (!rspfile.empty()) { in StartEdge()
919 if (!disk_interface_->WriteFile(rspfile, content)) in StartEdge()
1023 string rspfile = edge->GetUnescapedRspfile(); in FinishCommand() local
1024 if (!rspfile.empty() && !g_keep_rsp) in FinishCommand()
1025 disk_interface_->RemoveFile(rspfile); in FinishCommand()
Dninja.cc745 string rspfile = edge->GetUnescapedRspfile(); in EvaluateCommandWithRspfile() local
746 if (rspfile.empty()) in EvaluateCommandWithRspfile()
749 size_t index = command.find(rspfile); in EvaluateCommandWithRspfile()
760 command.replace(index - 1, rspfile.length() + 1, rspfile_content); in EvaluateCommandWithRspfile()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/
Dninja.py1568 rspfile = None
1572 rspfile = rule_name + '.$unique_name.rsp'
1581 rspfile + run_in)
1592 rspfile=rspfile, rspfile_content=rspfile_content)
1776 rspfile='$binary.rsp',
1782 rspfile='$binary.rsp',
1795 rspfile='$binary.rsp',
2026 rspfile='$out.rsp',
2033 rspfile='$out.rsp',
2088 rspfile='$link_file_list',
[all …]
/third_party/node/tools/gyp/pylib/gyp/generator/
Dninja.py1949 rspfile = None
1953 rspfile = rule_name + ".$unique_name.rsp"
1964 + rspfile
1982 rspfile=rspfile,
2185 rspfile="$binary.rsp",
2194 rspfile="$binary.rsp",
2211 rspfile="$binary.rsp",
2464 rspfile="$out.rsp",
2472 rspfile="$out.rsp",
2542 rspfile="$link_file_list",
[all …]
/third_party/glib/gobject/
Dglib-mkenums.in72 def get_rspfile_args(rspfile):
84 if not os.path.isfile(rspfile):
85 sys.exit('Response file {!r} does not exist'.format(rspfile))
87 with open(rspfile, 'r') as f:
91 .format(rspfile, e.strerror))
/third_party/ninja/doc/
Dmanual.asciidoc868 `rspfile`, `rspfile_content`:: if present (both), Ninja will use a
870 (`rspfile_content`) to the given file (`rspfile`) before calling the
882 rspfile = $out.rsp
/third_party/gn/docs/
Dreference.md3661 rspfile [string with substitutions]
3668 Valid for: all tools except "action" (required when "rspfile" is used)
3678 rspfile = "{{output}}.rsp"