commit | fdc7f98b4e118dfd3580badebaefdd95a372354a | [log] [tgz] |
---|---|---|
author | Thiago Farina <tfarina@chromium.org> | Mon Apr 27 23:01:34 2015 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Tue Apr 28 15:15:16 2015 +0000 |
tree | 7c8062f7e95e59a262983fa9651c85098e906cc6 | |
parent | f636cedabf07d3e1fa01f79478c711717dc0d990 [diff] |
Cleanup: Do not include unnecessary headers in blaze_util.h. The header only uses std::string, std::vector, int and char types, and thus all these headers do not need to be included there. If necessary, they should be included in the relevant source files instead. -- Change-Id: Id1849a0f427016dcf732fe6bfc673e599e8d4b14 MOS_MIGRATED_REVID=92192506
{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.
How to install Bazel
How to get started using Bazel
The Bazel command line is documented in the user manual
The rule reference documentation is in the build encyclopedia
How to use the query command
How to extend Bazel
The test environment is described in the test encyclopedia
About the Bazel project: