Bug 1591563 - Add an empty do-nothing crate for fogotype work r=janerik

Differential Revision: https://phabricator.services.mozilla.com/D53713

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Chris H-C 2019-11-22 20:38:48 +00:00
Родитель 63557d95ad
Коммит 305aa7f710
5 изменённых файлов: 23 добавлений и 0 удалений

5
Cargo.lock сгенерированный
Просмотреть файл

@ -1165,6 +1165,10 @@ name = "fnv"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "fog"
version = "0.1.0"
[[package]]
name = "foreign-types"
version = "0.3.0"
@ -1444,6 +1448,7 @@ dependencies = [
"env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"fluent-langneg 0.11.1 (registry+https://github.com/rust-lang/crates.io-index)",
"fluent-langneg-ffi 0.1.0",
"fog 0.1.0",
"geckoservo 0.0.1",
"gkrust_utils 0.1.0",
"jsrust_shared 0.1.0",

Просмотреть файл

@ -0,0 +1,9 @@
[package]
name = "fog"
version = "0.1.0"
authors = ["Chris H-C <chutten@mozilla.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

Просмотреть файл

@ -0,0 +1,7 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}

Просмотреть файл

@ -46,6 +46,7 @@ rlbox_lucet_sandbox = { version = "0.1.0", optional = true }
wgpu-remote = { path = "../../../../gfx/wgpu/wgpu-remote", optional = true }
mapped_hyph = { git = "https://github.com/jfkthame/mapped_hyph.git", tag = "v0.3.0" }
remote = { path = "../../../../remote", optional = true }
fog = { path = "../../../components/telemetry/fog" }
unic-langid = { version = "0.7.1", features = ["likelysubtags"] }
unic-langid-ffi = { path = "../../../../intl/locale/rust/unic-langid-ffi" }

Просмотреть файл

@ -46,6 +46,7 @@ extern crate storage;
#[cfg(feature = "moz_places")]
extern crate bookmark_sync;
extern crate shift_or_euc_c;
extern crate fog;
extern crate audio_thread_priority;