| 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" | |
| 7 #include "base/files/file_path.h" | |
| 8 #include "base/test/launcher/unit_test_launcher.h" | 6 #include "base/test/launcher/unit_test_launcher.h" |
| 9 #include "base/test/test_io_thread.h" | |
| 10 #include "build/build_config.h" | |
| 11 #include "content/public/test/unittest_test_suite.h" | 7 #include "content/public/test/unittest_test_suite.h" |
| 12 #include "content/test/content_test_suite.h" | 8 #include "content/test/content_test_suite.h" |
| 13 #include "mojo/edk/embedder/scoped_ipc_support.h" | 9 #include "content/test/content_unittests_catalog_source.h" |
| 14 #include "services/catalog/catalog.h" | 10 #include "services/catalog/catalog.h" |
| 15 | 11 |
| 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 | |
| 26 | |
| 27 int main(int argc, char** argv) { | 12 int main(int argc, char** argv) { |
| 28 content::UnitTestTestSuite test_suite( | 13 content::UnitTestTestSuite test_suite( |
| 29 new content::ContentTestSuite(argc, argv)); | 14 new content::ContentTestSuite(argc, argv)); |
| 30 | 15 |
| 31 #if !defined(OS_ANDROID) | 16 catalog::Catalog::SetDefaultCatalogManifest( |
| 32 catalog::Catalog::LoadDefaultCatalogManifest( | 17 content::CreateContentUnittestsCatalog()); |
| 33 base::FilePath(kCatalogFilename)); | |
| 34 #endif | |
| 35 | 18 |
| 36 base::TestIOThread test_io_thread(base::TestIOThread::kAutoStart); | |
| 37 mojo::edk::ScopedIPCSupport ipc_support( | |
| 38 test_io_thread.task_runner(), | |
| 39 mojo::edk::ScopedIPCSupport::ShutdownPolicy::FAST); | |
| 40 return base::LaunchUnitTests( | 19 return base::LaunchUnitTests( |
| 41 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, | 20 argc, argv, base::Bind(&content::UnitTestTestSuite::Run, |
| 42 base::Unretained(&test_suite))); | 21 base::Unretained(&test_suite))); |
| 43 } | 22 } |
| OLD | NEW |