OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 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 #include "base/at_exit.h" |
| 6 #include "base/command_line.h" |
| 7 #include "base/test/launcher/test_launcher_nacl_nonsfi.h" |
| 8 |
| 9 int main(int argc, char* argv[]) { |
| 10 base::AtExitManager at_exit; |
| 11 base::CommandLine::Init(argc, argv); |
| 12 return base::TestLauncherNonSfiMain("nacl_helper_nonsfi_unittests_main"); |
| 13 } |
OLD | NEW |