blob: d38008b5d5e77d8740f000b58bd7a173d0baa1f5 [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")
group("test") {
testonly = true
deps = [ ":debugdata" ]
}
test("debugdata") {
output_name = "debugdata-test"
sources = [
"datasink.cc",
"debugdata.cc",
]
deps = [
"//src/lib/files",
"//src/storage/lib/vfs/cpp",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/debugdata",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("debugdata-test-pkg") {
package_name = "debugdata-test"
manifest = "meta/debugdata-test.cml"
deps = [ ":debugdata" ]
}
group("tests") {
testonly = true
deps = [ ":debugdata-test-pkg" ]
}