summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/build/docs/rust_toolchain.md
blob: 6217fd5af66cda054c89584d255d22a4d73400c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Rust toolchain

Chrome currently uses an experimental Rust toolchain built by the Android
team, which supports only Linux and Android builds.

To build Rust code on other platforms for development/experimentation, add the
following to your `gn args`:

```
use_unverified_rust_toolchain=true
rust_bin_dir="<path-to>/.cargo/bin"
```

## Using VSCode, rust-analyzer etc.

Any IDE which supports rust-analyser should be able to ingest metadata from gn
about the structure of our Rust project. Do this:

* `gn gen out/Debug/ --export-rust-project`
* `ln -s out/Debug/rust-project.json rust-project.json`, i.e. symlink the
  `rust-project.json` file to the root of the Chromium src directory.