BUG=b:372549215 TEST=tools/dev_container tools/presubmit Change-Id: I3fcc524d1c6c41ae92c51cecb6e4d856c3d60670 Reviewed-on: https://chromium-review.googlesource.com/c/crosvm/crosvm/+/6255229 Reviewed-by: Frederick Mayle <fmayle@google.com> Reviewed-by: Dennis Kempin <denniskempin@google.com> Commit-Queue: Daniel Verkamp <dverkamp@chromium.org> |
||
|---|---|---|
| .. | ||
| src | ||
| build.rs | ||
| Cargo.toml | ||
| README.md | ||
Perfetto Rust wrapper
The following instructions are based on tools/impl/bindgen-common.sh
When the Perfetto C API is updated, in order to regenerate the bindings:
- Download the bindgen cmdline tool.
- Run the bindgen command. If you are in crosvm:
$ bindgen third_party/perfetto/include/perfetto/tracing/ctrace.h --disable-header-comment --no-layout-tests --no-doc-comments --with-derive-default --size_t-is-usize -o ./perfetto/src/bindings.rs - Add the following to the top of the new bindings.rs file:
#![allow(clippy::missing_safety_doc)] #![allow(clippy::upper_case_acronyms)] #![allow(non_upper_case_globals)] #![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(dead_code)] - Finally, add a copyright header to the bindings.