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-19 13:51:24 +00:00
Родитель 27a95c0e17
Коммит f74263f73d
5 изменённых файлов: 23 добавлений и 0 удалений

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

@ -1145,6 +1145,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"
@ -1422,6 +1426,7 @@ dependencies = [
"cubeb-sys 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"encoding_glue 0.1.0",
"env_logger 0.6.2 (registry+https://github.com/rust-lang/crates.io-index)",
"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);
}
}

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

@ -45,6 +45,7 @@ neqo_glue = { path = "../../../../netwerk/socket/neqo_glue" }
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" }
fog = { path = "../../../components/telemetry/fog" }
[build-dependencies]
rustc_version = "0.2"

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

@ -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;