aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorNan Zhang <nanzhang@google.com>2017-11-02 13:28:15 -0700
committerNan Zhang <nanzhang@google.com>2017-11-06 14:23:59 -0800
commit61eaedbddf6e5d3ac5afa85118d8f082e7f592d6 (patch)
treefd17f539600801915e8b42f5d6ede1d75dfaf38f /README.md
parent9c7dcfd72c644d7ed41fba79accf13d8e6c8be2a (diff)
downloadbuild_soong-61eaedbddf6e5d3ac5afa85118d8f082e7f592d6.tar.gz
build_soong-61eaedbddf6e5d3ac5afa85118d8f082e7f592d6.tar.bz2
build_soong-61eaedbddf6e5d3ac5afa85118d8f082e7f592d6.zip
Support Javac sharding in Soong.
Test: m clean && m -j java and java_test.go Change-Id: I110a0ff029448d3319aed2788d25d90a6c1a7fa0
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 4 insertions, 2 deletions
diff --git a/README.md b/README.md
index bc019ae6..3d24e75a 100644
--- a/README.md
+++ b/README.md
@@ -61,6 +61,7 @@ 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`)
+* Integers (`int`)
* Strings (`"string"`)
* Lists of strings (`["string1", "string2"]`)
* Maps (`{key1: "value1", key2: ["value2"]}`)
@@ -71,8 +72,9 @@ 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.
+Integers can be summed up 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