Home
last modified time | relevance | path

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

/developtools/ace_ets2bundle/compiler/src/fast_build/ark_compiler/module/
Dmodule_mode.ts128 protoFilePath: string; property in ModuleMode
148 this.protoFilePath = path.join(this.projectConfig.cachePath, PROTOS, PROTO_FILESINFO_TXT);
578 validateFilePathLength(this.protoFilePath, this.logger);
579 mkdirsSync(path.dirname(this.protoFilePath));
589 fs.writeFileSync(this.protoFilePath, protoFilesInfo, 'utf-8');
594 …const cmd: any = `"${this.arkConfig.mergeAbcPath}" --input "@${this.protoFilePath}" --outputFilePa…
672 if (fs.existsSync(this.protoFilePath)) {
673 const data: string = fs.readFileSync(this.protoFilePath, 'utf-8');
676 const protoFilePath: string = line; constant
677 if (fs.existsSync(protoFilePath)) {
[all …]
/developtools/ace_ets2bundle/compiler/src/
Dgen_abc_plugin.ts120 let protoFilePath: string = ''; variable
1164 protoFilePath = path.join(path.join(process.env.cachePath, "protos", PROTO_FILESINFO_TXT));
1165 validateFilePathLength(protoFilePath, logger);
1166 mkdirsSync(path.dirname(protoFilePath));
1181 fs.writeFileSync(protoFilePath, entriesInfo, 'utf-8');
1192 …const singleCmd: any = `"${mergeAbc}" --input "@${protoFilePath}" --outputFilePath "${projectConfi…