commit | 6b4b269adf1ae367a7df006d6c86b4ff6a592678 | [log] [tgz] |
---|---|---|
author | Googler <noreply@google.com> | Fri Sep 02 23:01:04 2016 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Tue Sep 06 15:38:13 2016 +0000 |
tree | 5ba2216a451fd332d9ce5073be200ed8954419fe | |
parent | 7382c11818cff73851ae484dfc201126db06a1b5 [diff] |
Adds a jar filter to the IntelliJ IDE aspect. Any java rule that mixes generated and non-generated sources will produce a filtered jar containing only the generated output. For a java rule with only "normal" sources or only generated source files, no filtered jar is produced. This will allow the IDE to resolve those generated sources. RELNOTES:None -- MOS_MIGRATED_REVID=132113568
{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.