Home
last modified time | relevance | path

Searched refs:build_command (Results 1 – 5 of 5) sorted by relevance

/aosp12/build/make/tools/releasetools/
H A Dbuild_image.py252 build_command = []
296 build_command.append("-c")
304 build_command = ["mkerofsimage.sh"]
340 build_command.extend(["-a"])
342 build_command = ["mkf2fsuserimg.sh"]
348 build_command.extend(["-f", in_dir])
358 build_command.append("--prjquota")
360 build_command.append("--casefold")
365 build_command.append("--sldc")
367 build_command.append(str(0))
[all …]
/aosp12/art/test/testrunner/
H A Drun_build_test_target.py82 build_command = target.get('build').format( variable
85 sys.stdout.write(str(build_command) + '\n')
87 if subprocess.call(build_command.split()):
92 build_command = 'build/soong/soong_ui.bash --make-mode' variable
93 build_command += ' DX='
94 build_command += ' -j' + str(n_threads)
95 build_command += ' ' + target.get('make')
97 build_command += ' dist'
98 sys.stdout.write(str(build_command) + '\n')
100 if subprocess.call(build_command.split()):
H A Dtestrunner.py1220 build_command = env.ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode'
1221 build_command += ' DX='
1223 build_command += ' dist'
1224 build_command += ' ' + build_targets
1225 print_text('Build command: %s\n' % build_command)
1226 if subprocess.call(build_command.split()):
/aosp12/art/
H A Dtest.py65 build_command = ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode' variable
66 build_command += ' -j' + str(options.n_threads)
67 build_command += ' ' + build_target
68 print(build_command)
69 if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):
/aosp12/build/soong/ui/metrics/metrics_proto/
H A Dmetrics.proto107 optional string build_command = 26; field