• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Example of an unmigrated package.
2
3package(default_visibility = [
4    "//tests:__subpackages__",
5])
6
7licenses(["unencumbered"])
8
9cc_library(
10    name = "library_with_legacy_license_clause",
11    srcs = ["file_under_notice.cc"],
12)
13
14cc_library(
15    name = "another_library_with_legacy_license_clause",
16    srcs = ["file_under_notice.cc"],
17)
18