No description
Find a file
Colin Cross 99967a7b34 Allow arch-specific modules to be disabled in the PDK
Modules may need to be disabled in the PDK for the device but not
the host.

Test: m checkbuild
Change-Id: Ie40555d1437d9f36ceec753884dc4045132998eb
2017-10-17 16:25:26 -07:00
android Allow arch-specific modules to be disabled in the PDK 2017-10-17 16:25:26 -07:00
androidmk Add usage message to androidmk 2017-10-06 11:48:44 -07:00
bpfix Revert "Revert "Initial implementation of bpfix"" 2017-06-19 15:52:15 -07:00
cc Merge "Add enable_profile_use property" 2017-10-17 03:00:05 +00:00
cmd Merge "Switch product configs from make to ckati" 2017-10-13 23:22:00 +00:00
docs Add Documentation for clion project generator 2017-02-16 09:57:46 -08:00
env Support dependencies on environment variables 2015-03-26 14:13:49 -07:00
finder Fix the Finder's ability to ignore permission errors 2017-08-23 17:53:41 -07:00
fs Fail the Finder in case of unexpected fs error 2017-08-15 13:18:24 -07:00
genrule Add test for java generated sources 2017-10-09 15:36:06 -07:00
jar Change default jar time to match ziptime 2017-10-04 17:19:43 -07:00
java Initial kotlin support 2017-10-17 16:25:22 -07:00
phony Allow AndroidMkData.Custom handlers to extend normal values 2017-08-11 15:24:11 -07:00
python Let tests override environment 2017-10-10 23:28:43 -07:00
scripts Initial support for converting jars to java9 system modules 2017-10-16 15:00:02 -07:00
shared Have Soong try to enforce that genrules declare all their outputs. 2017-06-09 17:57:18 +00:00
third_party/zip Strip extended-timestap extra block in zip2zip. 2017-09-19 21:01:18 -07:00
ui Revert "Always run asan ckati on the build servers" 2017-10-14 00:43:13 +00:00
Android.bp Initial kotlin support 2017-10-17 16:25:22 -07:00
bootstrap.bash Obsolete bootstrap.bash and ./soong wrappers 2017-08-18 10:13:22 -07:00
build_test.bash Get some more debugging for ckati crashes 2017-10-10 01:31:21 +00:00
doc.go Add soong_build primary builder 2015-03-13 20:28:16 -07:00
OWNERS Add OWNERS in build/soong 2017-06-15 13:49:57 -07:00
PREUPLOAD.cfg Fix gofmt problems and add gofmt to preupload checks 2016-10-20 18:48:20 -07:00
README.md Document examples of conditionals in go 2017-01-13 18:07:01 -08:00
root.bp Allow to build Android.bp in tradefed project 2017-09-26 16:10:49 -07:00
soong.bash Obsolete bootstrap.bash and ./soong wrappers 2017-08-18 10:13:22 -07:00
soong.bootstrap.in Use SRCDIR as a working directory 2015-09-17 23:42:25 -07:00
soong_ui.bash Switch to blueprint's microfactory 2017-07-24 15:29:14 -07:00

Soong

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.

Android.bp file format

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. The syntax and semantics of Android.bp files are intentionally similar to Bazel BUILD files when possible.

Modules

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.

Variables

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.

Comments

Android.bp files can contain C-style multiline /* */ and C++ style single-line // comments.

Types

Variables and properties are strongly typed, variables dynamically based on the first assignment, and properties statically by the module type. The supported types are:

  • Bool (true or false)
  • Strings ("string")
  • Lists of strings (["string1", "string2"])
  • Maps ({key1: "value1", key2: ["value2"]})

Maps may values of any type, including nested maps. Lists and maps may have trailing commas after the last value.

Operators

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.

Defaults modules

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"],
}

Formatter

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.

Convert Android.mk files

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, complex conditionals or extra includes must be converted by hand.

Differences between Android.mk and Android.bp

  • Android.mk files often have multiple modules with the same name (for example for static and shared version of a library, or for host and device versions). Android.bp files require unique names for every module, but a single module can be built in multiple variants, for example by adding host_supported: true. The androidmk converter will produce multiple conflicting modules, which must be resolved by hand to a single module with any differences inside target: { android: { }, host: { } } blocks.

Build logic

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.

FAQ

How do I write conditionals?

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"],
        },
    },
}

See art/build/art.go or external/llvm/soong/llvm.go for examples of more complex conditionals on product variables or environment variables.

Contact

Email android-building@googlegroups.com (external) for any questions, or see go/soong (internal).