| commit | 44ba758ae03e6d4a43654f988d9536c9eafcac5e | [log] [tgz] |
|---|---|---|
| author | Lukacs Berki <lberki@google.com> | Mon Jul 27 08:19:13 2015 +0000 |
| committer | Damien Martin-Guillerez <dmarting@google.com> | Mon Jul 27 08:34:51 2015 +0000 |
| tree | 68feca061b3acb436d55ee3f4bbac3b704f829a4 | |
| parent | 053570758c3dd642118fcfcaa52198e277215dce [diff] |
Make default values of attributes point to the main repository.
Default values of attributes (e.g. "//tools/cpp:malloc" when an attribute declaration says .name("malloc").value("//tools/cpp:malloc")) are now considered as a label inside the main repository and not inside the external repository. This is consistent with how we treat implicit/default attributes and is useful because these are usually tool dependencies.
--
MOS_MIGRATED_REVID=99160392
{Fast, Correct} - Choose two
Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google‘s software, and thus it has been designed to handle build problems present in Google’s development environment, including:
A massive, shared code repository, in which all software is built from source. Bazel has been built for speed, using both caching and parallelism to achieve this. Bazel is critical to Google's ability to continue to scale its software development practices as the company grows.
An emphasis on automated testing and releases. Bazel has been built for correctness and reproducibility, meaning that a build performed on a continuous build machine or in a release pipeline will generate bitwise-identical outputs to those generated on a developer's machine.
Language and platform diversity. Bazel's architecture is general enough to support many different programming languages within Google, and can be used to build both client and server software targeting multiple architectures from the same underlying codebase.
Find more background about Bazel in our FAQ.