diff options
author | 2021-09-06 18:31:46 +0200 | |
---|---|---|
committer | 2021-09-08 09:31:52 +0200 | |
commit | c6012f36e133effe2c4f54b96b46425ea5c0cb9b (patch) | |
tree | b6b4a121687cec021f6ae9db8bc80d7bd4001283 /README.md | |
parent | 144bf84677f687ef085bcf3d5a0b71f983841d47 (diff) |
Invoke soong_docs from the bootstrap Ninja file.
This makes soong_ui the only place where soong_build is invoked, thus
greatly simplifying the conceptual model of the build.
It comes with the slight limitation that now soong_docs (and queryview
and the JSON module graph) are not Make targets anymore, but I suppose
that's an acceptable loss.
The only place where someone depended on soong_docs from a Makefile is
removed in a separate change.
Test: Presubmits.
Change-Id: I3f9ac327725c15d84de725d05e3cdde1da3dcbe2
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -33,8 +33,10 @@ cc_binary { 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/docs/soong_build.html](https://ci.android.com/builds/latest/branches/aosp-build-tools/targets/linux/view/soong_build.html). +The list of valid module types and their properties can be generated by calling +`m soong_docs`. It will be written to `$OUT_DIR/soong/docs/soong_build.html`. +This list for the current version of Soong can be found [here](https://ci.android.com/builds/latest/branches/aosp-build-tools/targets/linux/view/soong_build.html). + ### File lists |