Home
last modified time | relevance | path

Searched refs:singleCmd (Results 1 – 6 of 6) sorted by relevance

/developtools/ace_ets2bundle/compiler/src/
Dgen_aot.ts102 let singleCmd: string = "";
104 singleCmd = singleCmdPrefix + ` "${appAbc}"`;
113singleCmd = singleCmdPrefix + ` --enable-pgo-profiler=true --compiler-pgo-profiler-path="${profile…
118 logger.debug(`generateAot cmd: ${singleCmd}`);
158 let singleCmd: string;
160singleCmd= `${tempAbcArgs.join(' ')} "${toUnixPath(builtinFilePath)}" -q -b -m --merge-abc -o "${b…
162singleCmd= `${tempAbcArgs.join(' ')} "${toUnixPath(builtinFilePath)}" --type-dts-builtin --type-ex…
165 logger.debug(`generateBuiltinAbc cmd: ${singleCmd}`);
166 childProcess.execSync(singleCmd, { windowsHide: true });
Dgen_abc.ts35 …const singleCmd: any = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sour… constant
36 logger.debug('gen abc cmd is: ', singleCmd, ' ,file size is:', inputPaths[i].size, ' byte');
38 childProcess.execSync(singleCmd);
Dgen_module_abc.ts48 const singleCmd: any = `${cmd} --input-file "${filePath}" --output-proto --merge-abc`; constant
49 logger.debug('gen abc cmd is: ', singleCmd);
51 childProcess.execSync(singleCmd);
Dgen_abc_plugin.ts616 …const singleCmd: any = `"${js2Abc}" --compile-npm-entries "${npmEntriesInfoPath}" "${npmEntriesPro… constant
618 childProcess.execSync(singleCmd);
1192 …const singleCmd: any = `"${mergeAbc}" --input "@${protoFilePath}" --outputFilePath "${projectConfi… constant
1194 childProcess.execSync(singleCmd);
/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/common/
Dgen_abc.ts39 …const singleCmd: any = `${cmd} "${cacheFilePath}" -o "${cacheAbcFilePath}" --source-file "${source… constant
41 childProcess.execSync(singleCmd, { windowsHide: true });
65 const singleCmd: any = `${cmd} "${filePath}"`; constant
67 childProcess.execSync(singleCmd, { windowsHide: true });
/developtools/ace_js2bundle/ace-loader/src/
Dgen-abc.js32 …const singleCmd = `${cmd} "${cacheOutputPath}" -o "${cacheAbcFilePath}" --source-file "${sourceFil…
34 childProcess.execSync(singleCmd);