commit | 8d061b85a91e70df10d2f20f81217386539560c1 | [log] [tgz] |
---|---|---|
author | Liam Miller-Cushon <cushon@google.com> | Thu Apr 07 18:08:59 2016 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Fri Apr 08 14:34:37 2016 +0000 |
tree | 64a681bb93f5855267b1f25cc5245a5bdc5e76b4 | |
parent | 7cb78991f1d23136dbd8541df82c7436521aa21c [diff] |
Don't emit native headers, only Java headers If NATIVE_HEADER_OUTPUT is set (which it always was for ZipOutputFileManager), then javac will emit jni headers for native methods. Emitting the the headers requires doing unnecessary additional work and completing additional symbols, which may not be present on the classpath. -- MOS_MIGRATED_REVID=119286406
{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.