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/macros.h" | |
8 #include "mojo/shell/public/cpp/connection.h" | |
9 #include "mojo/shell/public/cpp/connector.h" | |
10 #include "mojo/shell/public/cpp/shell_client.h" | |
11 #include "mojo/shell/runner/child/test_native_main.h" | |
12 #include "mojo/shell/runner/init.h" | |
13 #include "mojo/shell/tests/lifecycle/app_client.h" | |
14 | |
15 int main(int argc, char** argv) { | |
16 base::AtExitManager at_exit; | |
17 base::CommandLine::Init(argc, argv); | |
18 | |
19 mojo::shell::InitializeLogging(); | |
20 | |
21 mojo::shell::test::AppClient client; | |
22 return mojo::shell::TestNativeMain(&client); | |
23 } | |
OLD | NEW |