Lines Matching +full:ninja +full:- +full:bin
7 // http://www.apache.org/licenses/LICENSE-2.0
17 // This file contains Ninja build actions for building Python program.
33 Command: `$parCmd -o $out $args`,
47 Command: `sed -e 's/%interpreter%/$interp/g' -e 's/%main%/$main/g' $template > $stub && ` +
48 `echo "#!/usr/bin/env $interp" >${out}.prefix &&` +
49 `$mergeParCmd -p --prefix ${out}.prefix -pm $stub $out $srcsZips && ` +
50 `chmod +x $out && (rm -f $stub; rm -f ${out}.prefix)`,
57 Command: `rm -f $out.main && ` +
59 `$mergeParCmd -p -pm $out.main --prefix $launcher $out $srcsZips && ` +
60 `chmod +x $out && rm -rf $out.main`,
67 Command: `$mergeParCmd -p --prefix $launcher $out $srcsZips && ` +
86 // .intermediate output path for bin executable.
106 "interp": strings.Replace(interpreter, "/", `\/`, -1),
107 "main": strings.Replace(main, "/", `\/`, -1),
114 // added launcherPath to the implicits Ninja dependencies.
135 "main": strings.Replace(strings.TrimSuffix(main, pyExt), "/", ".", -1),