Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 // TODO(yoz): fold into ? | |
|
James Cook
2014/03/20 00:00:35
?
Yoyo Zhou
2014/03/20 21:17:30
deleted
| |
| 6 | |
| 7 #include <algorithm> | |
| 8 | |
| 9 #include "apps/test/apps_test_launcher_delegate.h" | |
| 10 #include "base/sys_info.h" | |
| 11 #include "testing/gtest/include/gtest/gtest.h" | |
| 12 | |
| 13 int main(int argc, char** argv) { | |
| 14 int default_jobs = std::max(1, base::SysInfo::NumberOfProcessors() / 2); | |
| 15 apps::AppsTestLauncherDelegate launcher_delegate; | |
| 16 return content::LaunchTests(&launcher_delegate, default_jobs, argc, argv); | |
| 17 } | |
| OLD | NEW |