Lines Matching refs:buildCfg
66 def getModulesPath (buildCfg): argument
67 return os.path.join(buildCfg.getBuildDir(), "modules")
69 def getBuiltModules (buildCfg): argument
71 modulesDir = getModulesPath(buildCfg)
83 def getCaseListPath (buildCfg, module, caseListType): argument
84 …return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseList…
86 def genCaseList (buildCfg, generator, module, caseListType): argument
87 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
92 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName))
97 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType): argument
99 srcPath = getCaseListPath(buildCfg, module, caseListType)
105 genCaseList(buildCfg, generator, module, caseListType)
146 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType) variable
155 build(buildCfg, generator, [m.binName for m in modules])
157 build(buildCfg, generator)
158 modules = getBuiltModules(buildCfg)
162 genAndCopyCaseList(buildCfg, generator, module, args.dst, args.caseListType)