Index: build/android/buildbot/bb_run_bot.py |
diff --git a/build/android/buildbot/bb_run_bot.py b/build/android/buildbot/bb_run_bot.py |
index 89b272f7c3836f54638072b74cec02598fe9db80..8c3ddb8391285415e1094300532b3812567e0b78 100755 |
--- a/build/android/buildbot/bb_run_bot.py |
+++ b/build/android/buildbot/bb_run_bot.py |
@@ -41,7 +41,7 @@ def GetEnvironment(host_obj, testing): |
init_env['GOMA_DIR'] = bb_utils.GOMA_DIR |
envsetup_cmd = '. build/android/envsetup.sh' |
if host_obj.target_arch: |
- envsetup_cmd += ' --target_arch=%s' % host_obj.target_arch |
+ envsetup_cmd += ' --target-arch=%s' % host_obj.target_arch |
if testing: |
# Skip envsetup to avoid presubmit dependence on android deps. |
print 'Testing mode - skipping "%s"' % envsetup_cmd |
@@ -131,6 +131,8 @@ def GetBotStepMap(): |
T(std_tests, ['--asan'])), |
B('chromedriver-fyi-tests-dbg', H(std_test_steps), |
T(['chromedriver'], ['--install=ChromiumTestShell'])), |
+ B('x86-builder-dbg', |
+ H(std_build_steps + std_host_tests, target_arch='x86')), |
Isaac (away)
2013/06/27 10:21:59
See comments in other CL -- unless there's a lot o
Siva Chandra
2013/06/27 18:53:17
I have compile_step instead of std_build_steps now
|
B('fyi-builder-dbg', |
H(std_build_steps + std_host_tests, ['--experimental'])), |
B('fyi-builder-rel', H(std_build_steps, ['--experimental'])), |