fuchsia: tweak build docs
[email protected]
Bug: 706592
Change-Id: I26abd7a3f0c4a13f46530917785119ec56dee7d5
Reviewed-on: https://chromium-review.googlesource.com/549038
Reviewed-by: Scott Graham <[email protected]>
Cr-Commit-Position: refs/heads/master@{#482356}
diff --git a/docs/fuchsia_build_instructions.md b/docs/fuchsia_build_instructions.md
index 5a5f317c..75fb527a7 100644
--- a/docs/fuchsia_build_instructions.md
+++ b/docs/fuchsia_build_instructions.md
@@ -90,6 +90,8 @@
$ gn gen out/fuch --args="is_debug=false dcheck_always_on=true is_component_build=false target_os=\"fuchsia\""
```
+`use_goma=true` is fine to use also if you're a Googler.
+
## Build
Currently, not all targets build on Fuchsia. You can build base\_unittests, for
@@ -114,3 +116,9 @@
script.
The run script also symbolizes backtraces.
+
+A useful alias (for "Build And Run Filtered") is:
+```shell
+alias barf='ninja -C out/fuch base_unittests -j1000 && out/fuch/bin/run_base_unittests --test-launcher-filter-file=../../testing/buildbot/filters/fuchsia.base_unittests.filter'
+```
+to build and run only the tests that are not excluded/known-failing on the bot.