blob: df25662d8605dcd1a13919b4b250f1b2df4e5697 [file] [log] [blame]
# Copyright 2019 The Fuchsia Authors
#
# Use of this source code is governed by a MIT-style
# license that can be found in the LICENSE file or at
# https://opensource.org/licenses/MIT
library("counters") {
kernel = true
sources = [
"counters.cpp",
]
deps = [
":tests", # TODO: testonly
"$zx/kernel/lib/console",
]
}
source_set("tests") {
# TODO: testonly = true
sources = [
"counters_tests.cpp",
]
deps = [
"$zx/kernel/lib/unittest",
]
}