Lines Matching refs:abiName
97 def getAbiPrebuiltsName (abiName): argument
105 if not abiName in prebuilts:
106 raise Exception("Unknown ABI: " + abiName)
108 return prebuilts[abiName]
236 def __init__ (self, abiName): argument
237 self.abiName = abiName
240 return getNativeBuildPath(config, self.abiName)
326 def getNativeBuildPath (config, abiName): argument
327 …return os.path.join(config.buildPath, "%s-%s-%d" % (abiName, config.nativeBuildType, config.native…
329 def buildNativeLibrary (config, abiName): argument
334 def getBuildArgs (config, abiName): argument
341 '-DANDROID_ABI=%s' % abiName,
346 args.append('-DANGLE_LIBS=%s' % os.path.join(config.angle, abiName))
350 nativeBuildPath = getNativeBuildPath(config, abiName)
351 buildConfig = BuildConfig(nativeBuildPath, config.nativeBuildType, getBuildArgs(config, abiName))