Searched refs:build_command (Results 1 – 3 of 3) sorted by relevance
88 build_command = target.get('build').format( variable91 sys.stdout.write(str(build_command) + '\n')93 if subprocess.call(build_command.split()):98 build_command = 'build/soong/soong_ui.bash --make-mode' variable99 build_command += ' D8='100 build_command += ' -j' + str(n_threads)101 build_command += ' ' + target.get('make')103 build_command += ' dist'104 sys.stdout.write(str(build_command) + '\n')106 if subprocess.call(build_command.split()):
1219 build_command = env.ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode'1220 build_command += ' D8='1222 build_command += ' dist'1223 build_command += ' ' + ' '.join(build_targets)1224 print_text('Build command: %s\n' % build_command)1225 if subprocess.call(build_command.split()):
66 build_command = ANDROID_BUILD_TOP + '/build/soong/soong_ui.bash --make-mode' variable67 build_command += ' -j' + str(options.n_threads)68 build_command += ' ' + build_target69 print(build_command)70 if subprocess.call(build_command.split(), cwd=ANDROID_BUILD_TOP):