blob: a2724e562f13ecbaf8d0dc84b7a954f657f89faf [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/async-loop/cpp/loop.h>
#include <lib/async/cpp/task.h>
#include <zx/time.h>
#include "garnet/examples/ui/hello_scenic/app.h"
#include "lib/fxl/command_line.h"
#include "lib/fxl/log_settings_command_line.h"
int main(int argc, const char** argv) {
auto command_line = fxl::CommandLineFromArgcArgv(argc, argv);
if (!fxl::SetLogSettingsFromCommandLine(command_line))
return 1;
async::Loop loop(&kAsyncLoopConfigAttachToThread);
hello_scenic::App app(&loop);
async::PostDelayedTask(loop.dispatcher(),
[&loop] {
FXL_LOG(INFO) << "Quitting.";
loop.Quit();
},
zx::sec(50));
loop.Run();
return 0;
}