# Copyright 2025 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. | |
load("@rules_python//python:py_binary.bzl", "py_binary") | |
exports_files([ | |
"format_golden.sh", | |
]) | |
py_binary( | |
name = "verify_golden_files", | |
srcs = [ | |
"verify_golden_files.py", | |
], | |
main = "verify_golden_files.py", | |
visibility = ["//visibility:public"], | |
) |