diff --git a/tools_webrtc/mb/mb.py b/tools_webrtc/mb/mb.py index 915a5b83ed..6dc64f9295 100755 --- a/tools_webrtc/mb/mb.py +++ b/tools_webrtc/mb/mb.py @@ -52,6 +52,7 @@ class WebRTCMetaBuildWrapper(mb.MetaBuildWrapper): test_type = isolate_map[target]['type'] is_android = 'target_os="android"' in vals['gn_args'] + is_fuchsia = 'target_os="fuchsia"' in vals['gn_args'] is_linux = self.platform.startswith('linux') and not is_android is_ios = 'target_os="ios"' in vals['gn_args'] @@ -85,6 +86,8 @@ class WebRTCMetaBuildWrapper(mb.MetaBuildWrapper): '--logcat-output-file', '${ISOLATED_OUTDIR}/logcats', '--store-tombstones' ] + elif is_fuchsia: + cmdline += ['bin/run_%s' % target] elif is_ios: cmdline += [ vpython_exe, '../../tools_webrtc/flags_compatibility.py',