OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "ui/aura_shell/test_suite.h" | 5 #include "ui/aura_shell/test_suite.h" |
6 | 6 |
7 #include "base/file_path.h" | 7 #include "base/file_path.h" |
8 #include "base/path_service.h" | 8 #include "base/path_service.h" |
9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 #include "ui/base/resource/resource_bundle.h" | 10 #include "ui/base/resource/resource_bundle.h" |
11 #include "ui/base/ui_base_paths.h" | 11 #include "ui/base/ui_base_paths.h" |
12 #include "ui/gfx/compositor/test/compositor_test_support.h" | 12 #include "ui/gfx/compositor/test/compositor_test_support.h" |
13 #include "ui/gfx/gfx_paths.h" | 13 #include "ui/gfx/gfx_paths.h" |
| 14 |
| 15 #if defined(USE_WEBKIT_COMPOSITOR) |
| 16 #include "ui/gfx/compositor/compositor_setup.h" |
| 17 #else |
14 #include "ui/gfx/test/gfx_test_utils.h" | 18 #include "ui/gfx/test/gfx_test_utils.h" |
| 19 #endif |
15 | 20 |
16 namespace aura_shell { | 21 namespace aura_shell { |
17 namespace test { | 22 namespace test { |
18 | 23 |
19 AuraShellTestSuite::AuraShellTestSuite(int argc, char** argv) | 24 AuraShellTestSuite::AuraShellTestSuite(int argc, char** argv) |
20 : TestSuite(argc, argv) {} | 25 : TestSuite(argc, argv) {} |
21 | 26 |
22 void AuraShellTestSuite::Initialize() { | 27 void AuraShellTestSuite::Initialize() { |
23 base::TestSuite::Initialize(); | 28 base::TestSuite::Initialize(); |
24 | 29 |
25 gfx::RegisterPathProvider(); | 30 gfx::RegisterPathProvider(); |
26 ui::RegisterPathProvider(); | 31 ui::RegisterPathProvider(); |
27 | 32 |
28 // Force unittests to run using en-US so if we test against string | 33 // Force unittests to run using en-US so if we test against string |
29 // output, it'll pass regardless of the system language. | 34 // output, it'll pass regardless of the system language. |
30 ui::ResourceBundle::InitSharedInstance("en-US"); | 35 ui::ResourceBundle::InitSharedInstance("en-US"); |
31 ui::CompositorTestSupport::Initialize(); | 36 ui::CompositorTestSupport::Initialize(); |
| 37 #if defined(USE_WEBKIT_COMPOSITOR) |
| 38 ui::SetupTestCompositor(); |
| 39 #else |
32 ui::gfx_test_utils::SetupTestCompositor(); | 40 ui::gfx_test_utils::SetupTestCompositor(); |
| 41 #endif |
33 } | 42 } |
34 | 43 |
35 void AuraShellTestSuite::Shutdown() { | 44 void AuraShellTestSuite::Shutdown() { |
36 ui::CompositorTestSupport::Terminate(); | 45 ui::CompositorTestSupport::Terminate(); |
37 ui::ResourceBundle::CleanupSharedInstance(); | 46 ui::ResourceBundle::CleanupSharedInstance(); |
38 | 47 |
39 base::TestSuite::Shutdown(); | 48 base::TestSuite::Shutdown(); |
40 } | 49 } |
41 | 50 |
42 } // namespace test | 51 } // namespace test |
43 } // namespace aura_shell | 52 } // namespace aura_shell |
OLD | NEW |