blob: 63c648e533549fb5953051cf5d08eeafdbf4b324 [file] [log] [blame]
# Copyright lowRISC contributors.
# Licensed under the Apache License, Version 2.0, see LICENSE for details.
# SPDX-License-Identifier: Apache-2.0
load("@rules_python//python:defs.bzl", "py_binary")
load("@ot_python_deps//:requirements.bzl", "requirement")
package(default_visibility = ["//visibility:public"])
py_binary(
name = "extract_sw_logs_db",
srcs = ["extract_sw_logs.py"],
main = "extract_sw_logs.py",
deps = [
requirement("pyelftools"),
],
)