commit | 5fe7230880cdb87ade113980a2d2351b6a7f64ea | [log] [tgz] |
---|---|---|
author | Googler <noreply@google.com> | Wed Nov 30 15:37:19 2016 +0000 |
committer | Irina Iancu <elenairina@google.com> | Thu Dec 01 10:13:46 2016 +0000 |
tree | d903847df1cb7e0adaced28c494b4dd75f356d00 | |
parent | c182908910a370b490e7e027b867e11f9f2fb086 [diff] |
Start removing flag for rclass generator (make nop) Flip option default to true to mirror flag flip and make the option a nop. After that we can remove the flag reference, and then we can remove the actual option. RELNOTES: --{no}experimental_use_rclass_generator is now a nop. It's been on by default for a while, and there are no references, so seems safe to remove. -- MOS_MIGRATED_REVID=140602921
{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.