commit | 1a54aa699c60b131e90598dae9d5226ee9da9399 | [log] [tgz] |
---|---|---|
author | Adam Michael <ajmichael@google.com> | Fri Feb 17 20:47:25 2017 +0000 |
committer | Irina Iancu <elenairina@google.com> | Mon Feb 20 09:42:35 2017 +0000 |
tree | df0ef2209228c41e887fa6d4ba888907004a26f0 | |
parent | b8a6c332bd79372d558c16ac0f9206279b889d48 [diff] |
Make android_ndk_repository api_level attribute optional. If not specified, the highest api level in the NDK is used. This is one more step towards the goal of making android_{s,n}dk_repository better for our users in https://github.com/bazelbuild/bazel/issues/2284. RELNOTES: android_ndk_repository api_level attribute is now optional. If not specified, the highest api level in the ndk/platforms directory is used. -- PiperOrigin-RevId: 147868288 MOS_MIGRATED_REVID=147868288
{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.