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