No description
Find a file
Dan Willemsen 25a4e07df8 Add archive/zip from go1.7rc5 tag
In preparation to patch in some custom functionality (parallel
compression and zero-decompress zip to zip copying)

Change-Id: I96a36efc09c715f6b55290af40ebfdde9ae72e33
2016-08-10 16:10:16 -07:00
android Convert defaults to a top down mutator 2016-08-09 13:54:03 -07:00
androidmk Add init_rc property, equivalent to LOCAL_INIT_RC 2016-07-29 15:24:08 -07:00
cc More fixes for decorator refactor. 2016-08-08 14:45:24 -07:00
cmd soong_jar: Hardcode time 2016-08-05 11:22:40 -07:00
env Support dependencies on environment variables 2015-03-26 14:13:49 -07:00
genrule Simplify arch target handling 2016-06-02 19:09:32 -07:00
glob Move globbing on top of pathtools.GlobWithExcludes 2015-04-29 14:59:23 -07:00
java Start using blueprint_go_binary 2016-05-31 18:31:56 -07:00
scripts Support stripping shared libraries and binaries 2016-05-03 14:03:38 -07:00
third_party/zip Add archive/zip from go1.7rc5 tag 2016-08-10 16:10:16 -07:00
Android.bp Refactor cc modules to use decorators instead of inheritance 2016-08-05 10:25:09 -07:00
bootstrap.bash Move shell and python scripts to scripts/ directory 2016-04-29 13:59:56 -07:00
build.ninja.in Update build.ninja.in for blueprint fs.go changes 2016-08-09 13:40:08 -07:00
doc.go Add soong_build primary builder 2015-03-13 20:28:16 -07:00
README.md Initial README.md 2016-07-18 13:00:59 -07:00
register.go Remove EarlyMutators and DynamicDependencies 2015-11-03 15:46:08 -08:00
root.bp Include frameworks/native 2016-07-29 15:24:08 -07:00
soong.bash Update path to ninja 2016-05-04 16:25:26 -07:00
soong.bootstrap.in Use SRCDIR as a working directory 2015-09-17 23:42:25 -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.

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

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

Contact

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