blob: 72a01033bf801fa1fde78256d1da7944ee883281 [file] [log] [blame]
# Copyright 2021 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.
import("//build/components.gni")
import("//build/testing/environments.gni")
executable("bin") {
output_name = "cpp_time_example"
sources = [ "main.cc" ]
deps = [
"//sdk/lib/async-default",
"//sdk/lib/async-loop:async-loop-cpp",
"//sdk/lib/async-loop:async-loop-default",
]
}
fuchsia_component("cpp-time-example-component") {
deps = [ ":bin" ]
component_name = "cpp-time-example"
manifest = "meta/cpp-time-example.cml"
}