Remove video_MediaUnittests

This test is broken on all platforms.

BUG=chrome-os-partner:51880
TEST=None

Change-Id: Iae4b4cd3dee6be11cb7a82851d00ea0a4a968c81
Signed-off-by: Shirish S <shirish.@intel.com>
Reviewed-on: https://chromium-review.googlesource.com/337650
Reviewed-by: Wu-cheng Li <wuchengli@chromium.org>
Tested-by: Wu-cheng Li <wuchengli@chromium.org>
diff --git a/client/site_tests/video_MediaUnittests/control b/client/site_tests/video_MediaUnittests/control
deleted file mode 100644
index 867dc45..0000000
--- a/client/site_tests/video_MediaUnittests/control
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-AUTHOR = "Chrome OS Team, chromeos-video@google.com"
-NAME = "video_MediaUnittests"
-PURPOSE = "Verify Chromium media unittests pass."
-CRITERIA = "This test will fail if media_unittests fails."
-ATTRIBUTES = "suite:video"
-SUITE = "video"
-TIME = "SHORT"
-TEST_CATEGORY = "Functional"
-TEST_CLASS = "video"
-TEST_TYPE = "client"
-
-DOC = """
-This is a wrapper test for Chrome media_unittests.
-"""
-
-job.run_test('video_MediaUnittests')
diff --git a/client/site_tests/video_MediaUnittests/video_MediaUnittests.py b/client/site_tests/video_MediaUnittests/video_MediaUnittests.py
deleted file mode 100644
index 6dffef5..0000000
--- a/client/site_tests/video_MediaUnittests/video_MediaUnittests.py
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (c) 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-import os
-
-from autotest_lib.client.cros import chrome_binary_test
-
-BINARY = 'media_unittests'
-
-class video_MediaUnittests(chrome_binary_test.ChromeBinaryTest):
-    """
-    This test is a wrapper of the chrome unittest binary: media_unittests.
-    """
-
-    version = 1
-
-
-    def run_once(self):
-        """
-        Runs media_unittests.
-        """
-        cmd_line = '--brave-new-test-launcher --test-launcher-bot-mode'
-        output = os.path.join(self.resultsdir, 'test-launcher-summary')
-        cmd_line = '%s --test-launcher-summary-output=%s' % (cmd_line, output)
-        self.run_chrome_test_binary(BINARY, cmd_line)