Index: tools/mb/mb.py |
diff --git a/tools/mb/mb.py b/tools/mb/mb.py |
index e54763c0370b0c2fff818d36e2fdb9550c539a91..ff75f84dac33ba2afc24b6b615d215ceb896d7e7 100755 |
--- a/tools/mb/mb.py |
+++ b/tools/mb/mb.py |
@@ -1011,23 +1011,12 @@ |
extra_files = [] |
if android and test_type != "script": |
- logdog_command = [ |
- '--logdog-bin-cmd', './../../bin/logdog_butler', |
- '--project', 'chromium', |
- '--service-account-json', |
- '/creds/service_accounts/service-account-luci-logdog-publisher.json', |
- '--prefix', 'android/swarming/logcats/${SWARMING_TASK_ID}', |
- '--source', '${ISOLATED_OUTDIR}/logcats', |
- '--name', 'unified_logcats', |
+ cmdline = [ |
+ self.PathJoin('bin', 'run_%s' % target_name), |
+ '--logcat-output-dir', '${ISOLATED_OUTDIR}/logcats', |
+ '--target-devices-file', '${SWARMING_BOT_FILE}', |
+ '-v', |
] |
- test_cmdline = [ |
- self.PathJoin('bin', 'run_%s' % target_name), |
- '--logcat-output-file', '${ISOLATED_OUTDIR}/logcats', |
- '--target-devices-file', '${SWARMING_BOT_FILE}', |
- '-v' |
- ] |
- cmdline = (['./../../build/android/test_wrapper/logdog_wrapper.py'] |
- + logdog_command + test_cmdline) |
elif use_x11 and test_type == 'windowed_test_launcher': |
extra_files = [ |
'xdisplaycheck', |