blob: 30b924070448b09e6c9472d795d7836368378a27 [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/components.gni")
import("//build/test.gni")
test("processor") {
output_name = "processor-test"
sources = [ "processor.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("processor-test-pkg") {
package_name = "processor-test"
deps = [ ":processor" ]
}
group("tests") {
testonly = true
deps = [ ":processor-test-pkg" ]
}