Bazel Concepts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 52: Line 52:
==<tt>.bazelrc</tt>==
==<tt>.bazelrc</tt>==
{{Internal|.bazelrc|.bazelrc}}
{{Internal|.bazelrc|.bazelrc}}
==Project View File==
==BUILD File==
=Starlark=
=Starlark=
{{External|https://bazel.build/rules/language}}
{{External|https://bazel.build/rules/language}}
=Bazelisk=
=Bazelisk=
A bazel runner. as "Bazel binary location" in the Bazel IntelliJ Plugin.
A bazel runner. as "Bazel binary location" in the Bazel IntelliJ Plugin.

Revision as of 21:51, 31 October 2023

Internal

Repository

https://bazel.build/concepts/build-ref#repositories

Package

https://bazel.build/concepts/build-ref#packages

Target

https://bazel.build/concepts/build-ref#targets

Label

https://bazel.build/concepts/labels

BUILD files

https://bazel.build/concepts/build-files

Dependencies

https://bazel.build/concepts/dependencies

Visibility

https://bazel.build/concepts/visibility

Platforms

https://bazel.build/concepts/platforms

Rules

Hermeticity

https://bazel.build/basics/hermeticity

Directories

Workspace

https://bazel.build/concepts/build-ref#workspace

A project's workspace is the directory where bazel looks for build inputs and BUILD files, and where it stores build outputs. The actual location is obtained with bazel info.

Bin

The actual location is obtained with bazel info.

Genfiles

The actual location is obtained with bazel info.

Testlogs

The actual location is obtained with bazel info.

Execution Root

The actual location is obtained with bazel info.

Install Base

The actual location is obtained with bazel info.

Output Base

The actual location is obtained with bazel info.

Output Path

The actual location is obtained with bazel info.

Package Path

%workspace%. See Workspace.

Repository Cache

The actual location is obtained with bazel info.

Files

Server Log

The actual location is obtained with bazel info.

Command Log

The actual location is obtained with bazel info.

.bazelrc

.bazelrc

Project View File

BUILD File

Starlark

https://bazel.build/rules/language

Bazelisk

A bazel runner. as "Bazel binary location" in the Bazel IntelliJ Plugin.