Copy as Markdown

Other Tools

/// Macro used to name a path in the objdir for use with macros like `include!`
#[macro_export]
macro_rules! objdir_path {
($path:literal) => {
concat!("/builds/worker/workspace/obj-build/", $path)
}
}
/// Macro used to name a path in the srcdir for use with macros like `include!`
#[macro_export]
macro_rules! srcdir_path {
($path:literal) => {
concat!("/builds/worker/checkouts/gecko/", $path)
}
}
/// The objdir path for use in build scripts
pub const TOPOBJDIR: &str = "/builds/worker/workspace/obj-build";
/// The srcdir path for use in build scripts
pub const TOPSRCDIR: &str = "/builds/worker/checkouts/gecko";
pub const MOZ_MACBUNDLE_ID: &str = "org\u{2e}mozilla\u{2e}nightlydebug";
pub const MOZ_APP_NAME: &str = "firefox";
pub const MOZ_FOLD_LIBS: bool = true;
pub const NIGHTLY_BUILD: bool = true;
pub const RELEASE_OR_BETA: bool = false;
pub const EARLY_BETA_OR_EARLIER: bool = true;
pub const MOZ_DEV_EDITION: bool = false;
pub const MOZ_ESR: bool = false;
pub const MOZ_DIAGNOSTIC_ASSERT_ENABLED: bool = true;
pub const MOZ_CRASHREPORTER_MOCK: bool = false;
pub const CC_BASE_FLAGS: [&str; 4] = ["-isysroot","/builds/worker/fetches/MacOSX14\u{2e}4\u{2e}sdk","-mmacosx-version-min\u{3d}11\u{2e}0","--target\u{3d}aarch64-apple-darwin"];
pub const MOZ_GTK3_CFLAGS: [&str; 0] = [];
pub const MOZ_GTK3_LIBS: [&str; 0] = [];