OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "base/bind.h" | 5 #include "base/bind.h" |
6 #include "base/command_line.h" | 6 #include "base/command_line.h" |
| 7 #include "base/files/file_path.h" |
7 #include "base/test/launcher/unit_test_launcher.h" | 8 #include "base/test/launcher/unit_test_launcher.h" |
8 #include "base/test/test_io_thread.h" | 9 #include "base/test/test_io_thread.h" |
9 #include "build/build_config.h" | 10 #include "build/build_config.h" |
10 #include "content/public/test/unittest_test_suite.h" | 11 #include "content/public/test/unittest_test_suite.h" |
11 #include "content/test/content_test_suite.h" | 12 #include "content/test/content_test_suite.h" |
12 #include "mojo/edk/embedder/scoped_ipc_support.h" | 13 #include "mojo/edk/embedder/scoped_ipc_support.h" |
| 14 #include "services/catalog/catalog.h" |
| 15 |
| 16 #if !defined(OS_ANDROID) |
| 17 |
| 18 namespace { |
| 19 |
| 20 const base::FilePath::CharType kCatalogFilename[] = |
| 21 FILE_PATH_LITERAL("content_unittests_catalog.json"); |
| 22 |
| 23 } // namespace |
| 24 |
| 25 #endif |
13 | 26 |
14 int main(int argc, char** argv) { | 27 int main(int argc, char** argv) { |
15 content::UnitTestTestSuite test_suite( | 28 content::UnitTestTestSuite test_suite( |
16 new content::ContentTestSuite(argc, argv)); | 29 new content::ContentTestSuite(argc, argv)); |
| 30 |
| 31 #if !defined(OS_ANDROID) |
| 32 catalog::Catalog::LoadDefaultCatalogManifest( |
| 33 base::FilePath(kCatalogFilename)); |
| 34 #endif |
| 35 |
17 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); | 36 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); |
18 mojo::edk::ScopedIPCSupport ipc_support( | 37 mojo::edk::ScopedIPCSupport ipc_support( |
19 test_io_thread.task_runner(), | 38 test_io_thread.task_runner(), |
20 mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST); | 39 mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST); |
21 return base::LaunchUnitTests( | 40 return base::LaunchUnitTests( |
22 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, | 41 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, |
23 base::Unretained(&test_suite))); | 42 base::Unretained(&test_suite))); |
24 } | 43 } |
OLD | NEW |