blob: feaf4ca03b8c1ad7dc42d1599b5176ad6d7d7e8f [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",
"//src/lib/debug: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" ]
}