1# Copyright (c) 2009-2021, Google LLC 2# All rights reserved. 3# 4# Use of this source code is governed by a BSD-style 5# license that can be found in the LICENSE file or at 6# https://developers.google.com/open-source/licenses/bsd 7 8load("@bazel_skylib//lib:selects.bzl", "selects") 9load("@rules_python//python:defs.bzl", "py_binary") 10 11package(default_applicable_licenses = ["//:license"]) 12 13licenses(["notice"]) 14 15py_binary( 16 name = "amalgamate", 17 srcs = ["amalgamate.py"], 18 visibility = ["//upb:__pkg__"], 19) 20