blob: ccc58e8fedf1d570a432b43ad16dee92b9f9185e [file]
# 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/test.gni")
import("//build/test/test_package.gni")
test("processor") {
output_name = "processor-test"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "processor.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
]
}
unittest_package("processor-package") {
package_name = "processor"
deps = [ ":processor" ]
tests = [
{
name = "processor-test"
},
]
}