commit | 80bb0f27a435974ac5105361bf79637aba519f98 | [log] [tgz] |
---|---|---|
author | Thiago Farina <tfarina@chromium.org> | Mon Oct 17 15:57:13 2016 +0000 |
committer | Philipp Wollermann <philwo@google.com> | Tue Oct 18 10:56:33 2016 +0000 |
tree | 085df66994e412ed7740c89418870d847af7ce2d | |
parent | c0f3d4ee3aa81747f879efec4cbb65d4e72605d8 [diff] |
cpp: header hygienization * remove "using std::" declarations from header files * add missing "std::" to some string declarations at some header files * add "using std::string;" to some source files where necessary -- Change-Id: Ib64f62b5add499d6171fa922227194ac992fa542 Reviewed-on: https://bazel-review.googlesource.com/#/c/6630/ MOS_MIGRATED_REVID=136355671
{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.