blob: 2e768ab3bd60aa4c282f5710ccaa33192500561a [file] [log] [blame]
# Copyright 2019 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/unification/images/migrated_manifest.gni")
executable("clock") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "clock.c" ]
deps = [
"//sdk/fidl/fuchsia.hardware.rtc:fuchsia.hardware.rtc_c",
"//zircon/public/lib/fdio",
]
}
executable("clkctl") {
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "clkctl.c" ]
deps = [
"//sdk/fidl/fuchsia.hardware.clock:fuchsia.hardware.clock_c",
"//zircon/public/lib/fdio",
]
}
migrated_manifest("clock-manifest") {
deps = [ ":clock" ]
}
migrated_manifest("clkctl-manifest") {
deps = [ ":clkctl" ]
}