commit | 8cd2978e429bdc178e06c0cb42f7ba73cabaeeb5 | [log] [tgz] |
---|---|---|
author | Nathan Harmata <nharmata@google.com> | Tue Nov 10 03:24:01 2015 +0000 |
committer | Damien Martin-Guillerez <dmarting@google.com> | Tue Nov 10 10:28:30 2015 +0000 |
tree | da3d1149e3a485fc83686efe96c98cb9e4f456c4 | |
parent | e040fe994c2da2b211858f7985fb736962a4499b [diff] |
Allow FilesystemValueChecker to operate on a WalkableGraph and add TODOs for replacing MemoizingEvaluator#getValues et al with WalkableGraph usage. I initially attempted to do this but punted once I realized how much work it would be. Also make DirectoryListingStateValue and FileStateValue public for use in outside callers of FilesystemValueChecker. -- MOS_MIGRATED_REVID=107447425
{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.