[build][fidl][rust] Change "-rustc" suffixes to "_rust"

This CL changes all dependencies on FIDL Rust targets to use the new
naming scheme "_rust" instead of the deprecated one "-rustc". It was
generated mechanically with:

    find . -name BUILD.gn | xargs sed -i 's/-rustc"/_rust"/g'
    fx format-code

The CL https://fuchsia-review.googlesource.com/c/fuchsia/+/705243 must
land before this one.

Bug: 102954
Change-Id: Ic9588f9a34e044c98acb3891cce74adb68e81866
Reviewed-on: https://fuchsia-review.googlesource.com/c/experiences/+/705282
Reviewed-by: Ian McKellar <ianloic@google.com>
Commit-Queue: Mitchell Kember <mkember@google.com>
1 file changed
tree: a84b0cbd73b775e309af88b91f7413c246d41fd3
  1. base_shells/
  2. bin/
  3. examples/
  4. lib/
  5. session_shells/
  6. tests/
  7. .gitignore
  8. AUTHORS
  9. BUILD.gn
  10. CONTRIBUTING.md
  11. LICENSE
  12. OWNERS
  13. PATENTS
  14. README.md
README.md

Fuchsia Experiences Repository

This is a companion repository to Fuchsia and contains code that either implements or supports user facing code for the Fuchsia platform. The code provides a majority of the user interface for the Workstation product as well as a small set of examples, tests, and benchmarks.

Build & Run

This repository is a “source petal” included in the Fuchsia Platform Source Tree (FPST) checkout. Code in this repository must be built with Fuchsia in order to be functional, see the guide for instructions on getting the source.

Hardware

Hardware support should be considered experimental. However, NUC's and Pixelbooks are known to work best. For details on hardware setup see: Install Fuchsia on a Device

Building

Once you have functional checkout you can configure a build targeting Workstation:

    fx set workstation.<board> # For options run: `fx list-boards`
    fx build

See Fuchsia's build and pave instructions for detailed instructions.

Running

Once built, standard Fuchsia workflows for paving, running code, and testing apply. See: fx workflows for detailed instructions.