cargo_gn 0.0.10

Cargo integration with the GN build system
1
2
3
4
5
6
7
8
#!/bin/bash

if command -v sccache; then
  export RUSTC_WRAPPER="sccache"
  export CXX="sccache clang++"
fi

cargo test -vv --all