Disable taskkill failure when killing dart processes on windows.

There is an outstanding issue with pub hanging and being unkillable on
windows.  Make the taskkill step pass on windows, even if there are
dart processes, until we fix this issue.

BUG=https://github.com/dart-lang/sdk/issues/24086
R=kustermann@google.com

Review URL: https://codereview.chromium.org/1582773002 .
diff --git a/tools/task_kill.py b/tools/task_kill.py
index 4a54965..ab07e8a 100755
--- a/tools/task_kill.py
+++ b/tools/task_kill.py
@@ -206,7 +206,11 @@
   options = GetOptions()
   status = 0
   if options.kill_dart:
-    status += KillDart()
+    if os_name == "win32":
+      # TODO(24086): Add result of KillDart into status once pub hang is fixed.
+      KillDart()
+    else:
+      status += KillDart()
   if options.kill_fletch:
     status += KillFletch()
   if options.kill_vc: