1*d6050574SRomain Jobredeaux# Copyright 2023 The Bazel Authors. All rights reserved. 2*d6050574SRomain Jobredeaux# 3*d6050574SRomain Jobredeaux# Licensed under the Apache License, Version 2.0 (the "License"); 4*d6050574SRomain Jobredeaux# you may not use this file except in compliance with the License. 5*d6050574SRomain Jobredeaux# You may obtain a copy of the License at 6*d6050574SRomain Jobredeaux# 7*d6050574SRomain Jobredeaux# http://www.apache.org/licenses/LICENSE-2.0 8*d6050574SRomain Jobredeaux# 9*d6050574SRomain Jobredeaux# Unless required by applicable law or agreed to in writing, software 10*d6050574SRomain Jobredeaux# distributed under the License is distributed on an "AS IS" BASIS, 11*d6050574SRomain Jobredeaux# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12*d6050574SRomain Jobredeaux# See the License for the specific language governing permissions and 13*d6050574SRomain Jobredeaux# limitations under the License. 14*d6050574SRomain Jobredeaux 15*d6050574SRomain Jobredeauxload("@rules_license//rules:license.bzl", "license") 16*d6050574SRomain Jobredeaux 17*d6050574SRomain Jobredeauxpackage( 18*d6050574SRomain Jobredeaux default_applicable_licenses = [":package_license"], 19*d6050574SRomain Jobredeaux default_visibility = ["//visibility:private"], 20*d6050574SRomain Jobredeaux) 21*d6050574SRomain Jobredeaux 22*d6050574SRomain Jobredeauxlicenses(["notice"]) 23*d6050574SRomain Jobredeaux 24*d6050574SRomain Jobredeauxexports_files(["LICENSE"]) 25*d6050574SRomain Jobredeaux 26*d6050574SRomain Jobredeauxlicense( 27*d6050574SRomain Jobredeaux name = "package_license", 28*d6050574SRomain Jobredeaux package_name = "rules_testing", 29*d6050574SRomain Jobredeaux) 30