blob: 6f07a08d9223f19db1fdead24677cf53b46a1234 [file] [log] [blame]
# Copyright 2022 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.
# buildifier: disable=bzl-visibility
# __BEGIN_FUCHSIA_SDK_INCLUDE__
# The above allows this fragment to be merged from `bazel_rules_fuchsia` into
# `@fuchsia_sdk//:BUILD.bazel`.
# buildifier: disable=bzl-visibility
load("//fuchsia/private:debug_info.bzl", "print_debug_info")
# A target that will dump debug information about the Fuchsia
# Bazel SDK and tools that it is using.
#
# Note: this command relies on the existence of a fuchsia_clang repository being
# registered in your WORKSPACE file.
#
# bazel run @fuchsia_sdk//:debug_info
print_debug_info(
name = "debug_info",
)
# __END_FUCHSIA_SDK_INCLUDE__