Index: views/run_all_unittests.cc |
diff --git a/views/run_all_unittests.cc b/views/run_all_unittests.cc |
deleted file mode 100644 |
index e6752913cd1648ae81e64d753722a15b45d926df..0000000000000000000000000000000000000000 |
--- a/views/run_all_unittests.cc |
+++ /dev/null |
@@ -1,34 +0,0 @@ |
-// Copyright (c) 2011 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. |
- |
-#include "base/test/test_suite.h" |
-#include "ui/base/resource/resource_bundle.h" |
-#include "ui/base/ui_base_paths.h" |
-#include "ui/gfx/compositor/test/compositor_test_support.h" |
-#include "ui/gfx/test/gfx_test_utils.h" |
-#include "ui/views/view.h" |
- |
-class ViewTestSuite : public base::TestSuite { |
- public: |
- ViewTestSuite(int argc, char** argv) : base::TestSuite(argc, argv) {} |
- |
- protected: |
- virtual void Initialize() { |
- base::TestSuite::Initialize(); |
- |
- ui::RegisterPathProvider(); |
- ui::ResourceBundle::InitSharedInstance("en-US"); |
- |
- ui::CompositorTestSupport::Initialize(); |
- ui::gfx_test_utils::SetupTestCompositor(); |
- } |
- |
- virtual void Shutdown() { |
- ui::CompositorTestSupport::Terminate(); |
- } |
-}; |
- |
-int main(int argc, char** argv) { |
- return ViewTestSuite(argc, argv).Run(); |
-} |