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
20 lines
455 B
TOML
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"
|