Lines Matching refs:abi
368 for abi in NDKEnv.getKnownAbis():
369 cMakeCachePath = os.path.join(getNativeBuildPath(config, abi), "CMakeCache.txt")
452 def __init__ (self, abi):
453 self.abi = abi
459 log(config, "BuildNativeLibrary: %s" % self.abi)
460 buildNativeLibrary(config, self.abi)
707 def __init__ (self, package, abi):
709 self.buildPath = [NativeBuildPath(abi)]
746 for abi in self.abis:
747 paths.append([NativeBuildPath(abi), "libdeqp.so"])
760 for abi in self.abis:
761 libSrcPath = resolvePath(config, [NativeBuildPath(abi), "libdeqp.so"])
762 libRelPath = os.path.join("lib", abi, "libdeqp.so")
773 layersGlob = os.path.join(config.layers, abi, "*")
777 layerRelPath = os.path.join("lib", abi, layerFilename)
784 angleGlob = os.path.join(config.angle, abi, "lib*_angle.so")
788 libRelPath = os.path.join("lib", abi, libFilename)
862 for abi in abis:
863 steps += [BuildNativeLibrary(abi)]
1003 for abi in abisStr.split(','):
1004 abi = abi.strip()
1005 if not abi in knownAbis:
1006 raise Exception("Unknown ABI: %s" % abi)
1007 abis.append(abi)