blob: bcc0439f4fb1f8fba765e8d581617dcf237c393f [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"
configs += [ "//build/unification/config:zircon-migrated" ]
sources = [ "processor.c" ]
deps = [
"//sdk/lib/fdio",
"//zircon/public/lib/zxtest",
]
}
fuchsia_unittest_package("processor-test-pkg") {
package_name = "processor-test"
deps = [ ":processor" ]
}
group("tests") {
testonly = true
deps = [ ":processor-test-pkg" ]
}