commit | c42458e2ff8e888cf8b5cd98ec419ad342bc11bd | [log] [tgz] |
---|---|---|
author | Dan Albert <danalbert@google.com> | Fri Jul 29 13:05:39 2016 -0700 |
committer | Dan Albert <danalbert@google.com> | Mon Aug 01 16:12:32 2016 -0700 |
tree | ffb6ebf4352272ec4ffda8f8b3e63b0a25a07abd | |
parent | 08532b6779281c3a5f4d4166914a26b047cd3459 [diff] |
Add tag for "versioned=API". This adds the `versioned=API` tag. This should be a very uncommonly needed tag, and is really only needed to fix versioning mistakes that are already out in the wild. For example, some of libc's __aeabi_* functions were originally placed in the private version, but that was incorrect. They are now in LIBC_N, but when building against any version prior to N we need the symbol to be unversioned (otherwise it won't resolve on M where it is private). Test: make ndk Change-Id: I0cd2f80cf4b32356356914cf7ff4119e67f15032
Soong is the replacement for the old Android make-based build system. It replaces Android.mk files with Android.bp files, which are JSON-like simple declarative descriptions of modules to build.
By design, Android.bp files are very simple. There are no conditionals or control flow statements - any complexity is handled in build logic written in Go.
A module in an Android.bp file starts with a module type, followed by a set of properties in name: value,
format:
cc_binary { name: "gzip", srcs: ["src/test/minigzip.c"], shared_libs: ["libz"], stl: "none", }
Every module must have a name
property, and the value must be unique across all Android.bp files.
For a list of valid module types and their properties see $OUT_DIR/soong/.bootstrap/docs/soong_build.html.
An Android.bp file may contain top-level variable assignments:
gzip_srcs = ["src/test/minigzip.c"], cc_binary { name: "gzip", srcs: gzip_srcs, shared_libs: ["libz"], stl: "none", }
Variables are scoped to the remainder of the file they are declared in, as well as any child blueprint files. Variables are immutable with one exception - they can be appended to with a += assignment, but only before they have been referenced.
Android.bp files can contain C-style multiline /* */
and C++ style single-line //
comments.
Variables and properties are strongly typed, variables dynamically based on the first assignment, and properties statically by the module type. The supported types are:
true
or false
)"string"
)["string1", "string2"]
){key1: "value1", key2: ["value2"]}
)Maps may values of any type, including nested maps. Lists and maps may have trailing commas after the last value.
Strings, lists of strings, and maps can be appended using the +
operator. Appending a map produces the union of keys in both maps, appending the values of any keys that are present in both maps.
A defaults module can be used to repeat the same properties in multiple modules. For example:
cc_defaults { name: "gzip_defaults", shared_libs: ["libz"], stl: "none", } cc_binary { name: "gzip", defaults: ["gzip_defaults"], srcs: ["src/test/minigzip.c"], }
Soong includes a canonical formatter for blueprint files, similar to gofmt. To recursively reformat all Android.bp files in the current directory:
bpfmt -w .
The canonical format includes 4 space indents, newlines after every element of a multi-element list, and always includes a trailing comma in lists and maps.
Soong includes a tool perform a first pass at converting Android.mk files to Android.bp files:
androidmk Android.mk > Android.bp
The tool converts variables, modules, comments, and some conditionals, but any custom Makefile rules or complex conditionals must be converted by hand.
The build logic is written in Go using the blueprint framework. Build logic receives module definitions parsed into Go structures using reflection and produces build rules. The build rules are collected by blueprint and written to a ninja build file.
Soong deliberately does not support conditionals in Android.bp files. Instead, complexity in build rules that would require conditionals are handled in Go, where high level language features can be used and implicit dependencies introduced by conditionals can be tracked. Most conditionals are converted to a map property, where one of the values in the map will be selected and appended to the top level properties.
For example, to support architecture specific files:
cc_library { ... srcs: ["generic.cpp"], arch: { arm: { srcs: ["arm.cpp"], }, x86: { srcs: ["x86.cpp"], }, }, }
Email android-building@googlegroups.com (external) for any questions, or see go/soong (internal).