Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.aspect.build/llms.txt

Use this file to discover all available pages before exploring further.

Documentation for @bazel_lib@v3.2.0 View source
A library rule and macro for grouping Starlark sources. Drop-in replacement for bzl_library in bazel_skylib, with exceptions:

Rule: bzl_library_rule

Creates a logical collection of Starlark .bzl and .star files.

Attributes

name
name
required
A unique name for this target.
srcs
list of labels
default:"[]"
deps
list of labels
default:"[]"

Function: bzl_library

Wrapper for bzl_library.

Parameters

name
name
required
name
srcs
name
default:"[]"
List of .bzl and .star files that are processed to create this target.
deps
name
default:"[]"
List of other bzl_library or filegroup targets that are required by the Starlark files listed in srcs.
kwargs
string_list
additional arguments for the bzl_library rule.