Home
last modified time | relevance | path

Searched refs:buildRoot (Results 1 – 4 of 4) sorted by relevance

/external/deqp/android/scripts/
Dinstall.py31 def install (buildRoot, extraArgs = [], printPrefix=""): argument
36 ], buildRoot, printPrefix, failOnNonZeroExit=False)
39 print printPrefix + "Installing dEQP Package from %s...\n" %(buildRoot),
44 ], buildRoot, printPrefix)
47 def installToDevice (device, buildRoot, printPrefix=""): argument
53 install(buildRoot, ['-s', device.serial], printPrefix)
55 def installToDevices (devices, doParallel, buildRoot): argument
58 …common.parallelApply(installToDevice, [(device, buildRoot, ("(%s):%s" % (device.model, ' ' * (padL…
60 common.serialApply(installToDevice, [(device, buildRoot) for device in devices]);
62 def installToAllDevices (doParallel, buildRoot): argument
[all …]
Dbuild.py49 def getNativeBuildDir (buildRoot, nativeLib, buildType): argument
51 return os.path.normpath(os.path.join(buildRoot, "native", buildName))
53 def getAssetsDir (buildRoot, nativeLib, buildType): argument
54 return os.path.join(getNativeBuildDir(buildRoot, nativeLib, buildType), "assets")
56 def buildNative (buildRoot, libTargetDir, nativeLib, buildType): argument
58 buildDir = getNativeBuildDir(buildRoot, nativeLib, buildType)
99 def buildApp (buildRoot, androidBuildType, javaApi): argument
100 appDir = os.path.join(buildRoot, "package")
149 def build (buildRoot=common.ANDROID_DIR, androidBuildType='debug', nativeBuildType="Release", javaA… argument
153 assetsSrcDir = getAssetsDir(buildRoot, common.NATIVE_LIBS[0], nativeBuildType)
[all …]
/external/deqp/scripts/
Dmake_release.py227 buildRoot = os.path.join(packageBuildInfo.tmpBasePath, "android-build")
229 assert not os.path.exists(buildRoot)
230 os.makedirs(buildRoot)
238 "--build-root=%s" % buildRoot,
241 srcFile = os.path.normpath(os.path.join(buildRoot, "package", "bin", "dEQP-debug.apk"))
/external/vogar/src/vogar/android/
DAndroidSdk.java249 String buildRoot = System.getenv("ANDROID_BUILD_TOP"); in filterNonExistentPathsFrom() local
251 File file = new File(buildRoot, path); in filterNonExistentPathsFrom()