Lines Matching defs:buildCfg
67 def getModulesPath (buildCfg):
68 return os.path.join(buildCfg.getBuildDir(), "modules")
70 def getBuiltModules (buildCfg):
72 modulesDir = getModulesPath(buildCfg)
84 def getCaseListPath (buildCfg, module, caseListType):
85 return os.path.join(getModulesPath(buildCfg), module.dirName, getCaseListFileName(module, caseListType))
87 def genCaseList (buildCfg, generator, module, caseListType):
88 workDir = os.path.join(getModulesPath(buildCfg), module.dirName)
93 binPath = generator.getBinaryPath(buildCfg.getBuildType(), os.path.join(".", module.binName))
98 def genAndCopyCaseList (buildCfg, generator, module, dstDir, caseListType):
100 srcPath = getCaseListPath(buildCfg, module, caseListType)
106 genCaseList(buildCfg, generator, module, caseListType)
147 buildCfg = getBuildConfig(args.buildDir, args.targetName, args.buildType)
156 build(buildCfg, generator, [m.binName for m in modules])
158 build(buildCfg, generator)
159 modules = getBuiltModules(buildCfg)
163 genAndCopyCaseList(buildCfg, generator, module, args.dst, args.caseListType)