blob: 0f87f08eb99a6928568703e1e7a5c8d413db3390 [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 = "c_time_example"
deps = [ "//zircon/system/ulib/zx" ]
sources = [ "main.c" ]
}
fuchsia_component("c-time-example-component") {
deps = [ ":bin" ]
component_name = "c-time-example"
manifest = "meta/c-time-example.cml"
}