blob: bb6cd249d923d5dca4973382f4f10297d50be182 [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("inspector") {
output_name = "inspector-test"
configs += [ "//build/config:all_source" ]
sources = [ "print_debug_info.cc" ]
deps = [
"//sdk/lib/fdio",
"//zircon/system/ulib/backtrace-request",
"//zircon/system/ulib/inspector",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("inspector-test-pkg") {
package_name = "inspector-test"
deps = [ ":inspector" ]
}
group("tests") {
testonly = true
deps = [ ":inspector-test-pkg" ]
}