| load("@rules_license//rules:license.bzl", "license") | |
| licenses(["notice"]) | |
| package( | |
| default_applicable_licenses = [":license"], | |
| default_visibility = ["//visibility:public"], | |
| ) | |
| license( | |
| name = "license", | |
| package_name = "auto", | |
| license_kinds = [ | |
| "@rules_license//licenses/spdx:Apache-2.0", | |
| ], | |
| license_text = "LICENSE", | |
| ) | |
| filegroup( | |
| name = "srcs", | |
| srcs = glob(["**"]), | |
| ) | |
| alias( | |
| name = "auto_service", | |
| actual = "//third_party:auto_service", | |
| ) | |
| alias( | |
| name = "auto_value", | |
| actual = "//third_party:auto_value", | |
| ) |