blob: ed760d5ea486c2a75a32e21f906abdcfdc0c4aeb [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("$zx/public/gn/fuzzer.gni")
group("test") {
testonly = true
deps = [
":bitmap",
":raw-bitmap-fuzzer",
]
}
zx_test("bitmap") {
sources = [
"raw-bitmap-tests.cc",
"rle-bitmap-tests.cc",
]
deps = [
"$zx/system/ulib/bitmap",
"$zx/system/ulib/fbl",
"$zx/system/ulib/fdio",
"$zx/system/ulib/unittest",
"$zx/system/ulib/zircon",
"$zx/system/ulib/zx",
]
}
fuzzer("raw-bitmap-fuzzer") {
sources = [
"raw-bitmap-fuzzer.cc",
]
deps = [
"$zx/system/ulib/bitmap",
]
}