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_BASENAME: &str = "Firefox";
pub const MOZ_APP_NAME: &str = "firefox";
pub const MOZ_APP_VENDOR: &str = "Mozilla";
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 BINDGEN_SYSTEM_FLAGS: [&str; 13] = ["-x","c++","-fno-sized-deallocation","-fno-aligned-new","-DTRACING\u{3d}1","-DIMPL_LIBXUL","-DMOZILLA_INTERNAL_API","-DRUST_BINDGEN","-isysroot","/builds/worker/fetches/MacOSX15\u{2e}4\u{2e}sdk","-mmacosx-version-min\u{3d}10\u{2e}15","-stdlib\u{3d}libc++","--target\u{3d}x86_64-apple-darwin"];
pub const MOZ_GTK3_CFLAGS: [&str; 0] = [];
pub const MOZ_GTK3_LIBS: [&str; 0] = [];
pub const NSPR_CFLAGS: [&str; 1] = ["-I/builds/worker/workspace/obj-build/dist/include/nspr"];
pub const NSS_CFLAGS: [&str; 1] = ["-I/builds/worker/workspace/obj-build/dist/include/nss"];
pub const MOZ_PIXMAN_CFLAGS: [&str; 0] = [];
pub const MOZ_ICU_CFLAGS: [&str; 0] = [];