No rbe for dart internal targets

The `--no-goma` has been used to skip goma for dart-internal targets.
This CL uses `--no-rbe` to skip rbe for dart-internal targets.

Existing main CI targets are using
1) `--no-goma` and `--rbe` for ones using rbe
2) no corresponding goma/rbe gn config for ones using goma (no goma config means `--no-goma` is none, which is equal to use goma)
3) for dart-internal targets, this cl explicitley appends `--no-rbe`, so it will build without goma and rbe

Change-Id: Ia77b53de20ea10c34341e2375f4f5316cb77fc0c
Bug: https://github.com/flutter/flutter/issues/144700
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/55823
Reviewed-by: Xilai Zhang <xilaizhang@google.com>
Commit-Queue: Keyong Han <keyonghan@google.com>
(cherry picked from commit 55a507a03ab01a0873d76cb77f15d6703144d257)
Reviewed-on: https://flutter-review.googlesource.com/c/recipes/+/55846
Reviewed-by: Godofredo Contreras <godofredoc@google.com>
11 files changed
tree: a17be89e4420d12a956a105bd847dc11153c684f
  1. infra/
  2. recipe_modules/
  3. recipes/
  4. .gitignore
  5. .style.yapf
  6. AUTHORS
  7. CONTRIBUTING.md
  8. LICENSE
  9. OWNERS
  10. README.md
  11. recipes.py
README.md

Flutter LUCI Recipes

This repository contains Flutter's LUCI recipes. For the LUCI infrastructure config, see flutter/infra. Builds can be found in the Flutter Dashboard.

Supported repositories roll their .ci.yaml into flutter/infra, which updates what properties builds have. For example, flutter config specifies various dependencies the different tests require, which are then used by the flutter_deps recipe_module No modifications to flutter/infra are required to work on the recipes.

Contributing

Please follow instructions on Contributing docs to set up your development environment.