Files
sousa-gecko/tools/profiler/rust-api/Cargo.toml
T
Damien Carver 9f29376065 Bug 1635350 - Remove MOZ_GECKO_PROFILER ifdef. r=necko-reviewers,whimboo,geckoview-reviewers,webrtc-reviewers,devtools-reviewers,profiler-reviewers,dom-storage-reviewers,translations-reviewers,canaltinova,TravisLong,valentin,m_kato,jesup,bwc,nchevobbe,jari
The maintenance cost of supporting non-profiler builds now outweighs the benefits.
While previously maintained for Tier 3 platforms, the profiler now supports marker recording across these targets.
Removing this toggle simplifies the build system and allows for faster development.

Differential Revision: https://phabricator.services.mozilla.com/D284849
2026-03-13 08:39:58 +00:00

20 lines
455 B
TOML

[package]
name = "gecko-profiler"
version = "0.1.0"
authors = ["The Mozilla Project Developers"]
edition = "2018"
license = "MPL-2.0"
[dependencies]
profiler-macros = { path = "./macros" }
lazy_static = "1"
serde = { version = "1.0", features = ["derive"] }
bincode = "1"
mozbuild = "0.1"
smallvec = { version = "1.0", features = ["write"] }
[build-dependencies]
lazy_static = "1"
bindgen = {version = "0.69", default-features = false}
mozbuild = "0.1"