summaryrefslogtreecommitdiff
path: root/build_extra
diff options
context:
space:
mode:
Diffstat (limited to 'build_extra')
-rw-r--r--build_extra/rust/BUILD.gn2733
-rw-r--r--build_extra/rust/empty_crate.rs2
-rw-r--r--build_extra/rust/get_cargo_info.cmd2
-rwxr-xr-xbuild_extra/rust/get_cargo_info.py14
-rw-r--r--build_extra/rust/get_rustc_info.cmd2
-rwxr-xr-xbuild_extra/rust/get_rustc_info.py203
-rw-r--r--build_extra/rust/run.py47
-rw-r--r--build_extra/rust/rust.gni380
8 files changed, 0 insertions, 3383 deletions
diff --git a/build_extra/rust/BUILD.gn b/build_extra/rust/BUILD.gn
deleted file mode 100644
index 2688643b4..000000000
--- a/build_extra/rust/BUILD.gn
+++ /dev/null
@@ -1,2733 +0,0 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-
-# Dependencies between third party crates is mapped out here manually. This is
-# not so difficult and having it be tedious to add dependencies might help us
-# avoid dependency hell later on. Always try to minimize dependencies.
-# Versioning for third party rust crates is controlled in //Cargo.toml
-# Use //tools/sync_third_party.py instead of running "cargo install".
-
-import("rust.gni")
-
-cargo_home = "//third_party/rust_crates"
-
-rust_rlib("adler32") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/adler32-1.0.3/src/lib.rs"
-}
-
-rust_rlib("aho_corasick") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/aho-corasick-0.7.6/src/lib.rs"
- features = [
- "default",
- "std",
- ]
- extern_rlib = [ "memchr" ]
-}
-
-rust_rlib("ansi_term") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.12.0/src/lib.rs"
- if (is_win) {
- extern_rlib = [ "winapi" ]
- }
-}
-
-rust_rlib("arrayvec") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/arrayvec-0.4.11/src/lib.rs"
- extern_rlib = [ "nodrop" ]
-
- # Added by custom-build script.
- cfg = [ "has_stable_maybe_uninit" ]
-}
-
-rust_rlib("atty") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/atty-0.2.13/src/lib.rs"
- if (is_posix) {
- extern_rlib = [ "libc" ]
- }
- if (is_win) {
- extern_rlib = [ "winapi" ]
- }
-}
-
-rust_rlib("base64") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/base64-0.10.1/src/lib.rs"
- extern_rlib = [ "byteorder" ]
-}
-
-rust_rlib("bitflags") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/bitflags-1.1.0/src/lib.rs"
- features = [ "default" ]
-
- # Added by custom-build script.
- cfg = [ "bitflags_const_fn" ]
-}
-
-rust_rlib("byteorder") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/byteorder-1.3.2/src/lib.rs"
- features = [
- "default",
- "std",
- ]
-
- # Added by custom-build script.
- cfg = [ "byteorder_i128" ]
-}
-
-rust_rlib("bytes") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/bytes-0.4.12/src/lib.rs"
- features = [ "either" ]
- extern_rlib = [
- "byteorder",
- "either",
- "iovec",
- ]
-}
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("c2_chacha") {
-# cap_lints = "allow"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/c2-chacha-0.2.2/src/lib.rs"
-# features = [
-# "lazy_static",
-# "simd",
-# "std",
-# ]
-# extern_rlib = [
-# "lazy_static",
-# "ppv_lite86",
-# ]
-# }
-
-rust_rlib("cfg_if") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.9/src/lib.rs"
-}
-
-rust_rlib("clap") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/clap-2.33.0/src/lib.rs"
- features = [
- "ansi_term",
- "atty",
- "color",
- "default",
- "strsim",
- "suggestions",
- "vec_map",
- ]
- extern_rlib = [
- "atty",
- "bitflags",
- "strsim",
- "textwrap",
- "unicode_width",
- "vec_map",
- ]
-
- # Override: use ansi_term v0.12.0 instead of v0.11.0.
- if (is_posix) {
- extern_rlib += [ "ansi_term" ]
- # extern = [
- # {
- # label = ":ansi_term-0.11.0"
- # crate_type = "rlib"
- # crate_name = "ansi_term"
- # crate_version = "0.11.0"
- # },
- # ]
- }
-}
-
-rust_rlib("cookie") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/cookie-0.12.0/src/lib.rs"
- features = [
- "percent-encode",
- "url",
- ]
- extern_rlib = [
- "time",
- "url",
- ]
-}
-
-rust_rlib("cookie_store") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/cookie_store-0.7.0/src/lib.rs"
- extern_rlib = [
- "cookie",
- "failure",
- "idna",
- "log",
- "publicsuffix",
- "serde",
- "serde_json",
- "time",
- "try_from",
- "url",
- ]
-}
-
-rust_rlib("crc32fast") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crc32fast-1.2.0/src/lib.rs"
- features = [
- "default",
- "std",
- ]
- extern_rlib = [ "cfg_if" ]
-
- # Added by custom-build script.
- cfg = [ "crc32fast_stdarchx86" ]
-}
-
-rust_rlib("crossbeam_deque") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-deque-0.7.1/src/lib.rs"
- extern_rlib = [
- "crossbeam_epoch",
- "crossbeam_utils",
- ]
-}
-
-rust_rlib("crossbeam_epoch") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-epoch-0.7.2/src/lib.rs"
- features = [
- "default",
- "lazy_static",
- "std",
- ]
- extern_rlib = [
- "arrayvec",
- "cfg_if",
- "crossbeam_utils",
- "lazy_static",
- "memoffset",
- "scopeguard",
- ]
-}
-
-rust_rlib("crossbeam_queue") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-queue-0.1.2/src/lib.rs"
- extern_rlib = [ "crossbeam_utils" ]
-}
-
-rust_rlib("crossbeam_utils") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/crossbeam-utils-0.6.6/src/lib.rs"
- features = [
- "default",
- "lazy_static",
- "std",
- ]
- extern_rlib = [
- "cfg_if",
- "lazy_static",
- ]
-}
-
-rust_rlib("ct_logs") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ct-logs-0.6.0/src/lib.rs"
- extern_rlib = [ "sct" ]
-}
-
-rust_rlib("dirs") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/dirs-2.0.2/src/lib.rs"
- extern_rlib = [
- "cfg_if",
- "dirs_sys",
- ]
-}
-
-rust_rlib("dirs_sys") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/dirs-sys-0.3.4/src/lib.rs"
- extern_rlib = [ "cfg_if" ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("dtoa") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/dtoa-0.4.4/src/lib.rs"
-}
-
-rust_rlib("either") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/either-1.5.2/src/lib.rs"
- features = [
- "default",
- "use_std",
- ]
-}
-
-rust_rlib("encoding_rs") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/encoding_rs-0.8.17/src/lib.rs"
- extern_rlib = [ "cfg_if" ]
-}
-
-rust_rlib("error_chain") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/error-chain-0.12.1/src/lib.rs"
- features = [
- "default",
- "example_generated",
- ]
-
- # Added by custom-build script.
- cfg = [ "has_error_source" ]
- if (is_win) {
- features += [ "backtrace" ]
- extern_rlib = [ "backtrace" ]
- }
-
- ## Override: 'backtrace' is not supported on POSIX platforms.
- # if (is_posix) {
- # features += [ "backtrace" ]
- # }
-}
-
-rust_rlib("failure") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/failure-0.1.5/src/lib.rs"
- features = [
- "default",
- "derive",
- "failure_derive",
- "std",
- ]
- extern = [
- {
- label = ":failure_derive"
- crate_type = "proc_macro"
- crate_name = "failure_derive"
- },
- ]
- if (is_win) {
- features += [ "backtrace" ]
- extern_rlib = [ "backtrace" ]
- }
-
- ## Override: 'backtrace' is not supported on POSIX platforms.
- # if (is_posix) {
- # features += [ "backtrace" ]
- # }
-}
-
-rust_proc_macro("failure_derive") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/failure_derive-0.1.5/src/lib.rs"
- extern_rlib = [
- "synstructure",
-
- # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- "proc_macro2",
-
- # Override: use quote v1.0.2 instead of v0.6.13.
- "quote",
- ]
- extern = [
- {
- label = ":syn-0.15.44"
- crate_type = "rlib"
- crate_name = "syn"
- crate_version = "0.15.44"
- },
-
- ## Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- # {
- # label = ":proc_macro2-0.4.30"
- # crate_type = "rlib"
- # crate_name = "proc_macro2"
- # crate_version = "0.4.30"
- # },
-
- ## Override: use quote v1.0.2 instead of v0.6.13.
- # {
- # label = ":quote-0.6.13"
- # crate_type = "rlib"
- # crate_name = "quote"
- # crate_version = "0.6.13"
- # },
- ]
-
- # Added by custom-build script.
- cfg = [ "has_dyn_trait" ]
-}
-
-rust_rlib("flate2") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/flate2-1.0.11/src/lib.rs"
- features = [
- "miniz_oxide",
- "rust_backend",
- ]
- extern_rlib = [
- "crc32fast",
- "libc",
- "miniz_oxide",
- ]
-}
-
-rust_rlib("fnv") {
- cap_lints = "allow"
- edition = "2015"
- source_root =
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/fnv-1.0.6/lib.rs"
-}
-
-rust_rlib("futures") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/futures-0.1.28/src/lib.rs"
- features = [
- "default",
- "use_std",
- "with-deprecated",
- ]
-}
-
-rust_rlib("futures_cpupool") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/futures-cpupool-0.1.8/src/lib.rs"
- features = [
- "default",
- "with-deprecated",
- ]
- extern_rlib = [
- "futures",
- "num_cpus",
- ]
-}
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("getrandom") {
-# cap_lints = "allow"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/getrandom-0.1.10/src/lib.rs"
-# features = [ "std" ]
-# extern_rlib = [ "cfg_if" ]
-# if (is_posix) {
-# extern_rlib += [ "libc" ]
-# }
-#
-# # Per the #[link(...)] attribute found in 'src/ios.rs'.
-# if (is_mac) {
-# libs = [ "Security.framework" ]
-# }
-#
-# # Added by custom-build script.
-# if (is_win) {
-# libs = [ "advapi32.lib" ]
-# }
-# }
-
-rust_rlib("h2") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/h2-0.1.26/src/lib.rs"
- extern_rlib = [
- "byteorder",
- "bytes",
- "fnv",
- "futures",
- "http",
- "indexmap",
- "log",
- "slab",
- "string",
- "tokio_io",
- ]
-}
-
-rust_rlib("http") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/http-0.1.18/src/lib.rs"
- extern_rlib = [
- "bytes",
- "fnv",
- "itoa",
- ]
-}
-
-rust_rlib("http_body") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/http-body-0.1.0/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "http",
- "tokio_buf",
- ]
-}
-
-rust_rlib("httparse") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/httparse-1.3.4/src/lib.rs"
- features = [
- "default",
- "std",
- ]
-
- # Added by custom-build script.
- cfg = [
- "httparse_min_2018",
- "httparse_simd",
- ]
-}
-
-rust_rlib("hyper") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/hyper-0.12.33/src/lib.rs"
- features = [
- "__internal_flaky_tests",
- "default",
- "futures-cpupool",
- "net2",
- "runtime",
- "tokio",
- "tokio-executor",
- "tokio-reactor",
- "tokio-tcp",
- "tokio-threadpool",
- "tokio-timer",
- ]
- extern_rlib = [
- "bytes",
- "futures",
- "futures_cpupool",
- "h2",
- "http",
- "http_body",
- "httparse",
- "iovec",
- "itoa",
- "log",
- "net2",
- "time",
- "tokio",
- "tokio_buf",
- "tokio_executor",
- "tokio_io",
- "tokio_reactor",
- "tokio_tcp",
- "tokio_threadpool",
- "tokio_timer",
- "want",
- ]
-
- # Added by custom-build script.
- cfg = [
- "error_source",
- "try_from",
- ]
-}
-
-rust_rlib("hyper_rustls") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/hyper-rustls-0.17.1/src/lib.rs"
- features = [
- "ct-logs",
- "default",
- "tokio-runtime",
- "webpki-roots",
- ]
- extern_rlib = [
- "bytes",
- "ct_logs",
- "futures",
- "hyper",
- "rustls",
- "tokio_io",
- "tokio_rustls",
- "webpki",
- "webpki_roots",
- ]
-}
-
-rust_rlib("idna") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/src/lib.rs"
- extern_rlib = [
- "matches",
- "unicode_bidi",
- "unicode_normalization",
- ]
-}
-
-rust_rlib("indexmap") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/indexmap-1.1.0/src/lib.rs"
-}
-
-rust_rlib("integer_atomics") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/integer-atomics-1.0.2/src/lib.rs"
-}
-
-rust_rlib("iovec") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/iovec-0.1.2/src/lib.rs"
- if (is_posix) {
- extern_rlib = [ "libc" ]
- }
- if (is_win) {
- extern = [
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
- }
-}
-
-rust_rlib("itoa") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/itoa-0.4.4/src/lib.rs"
- features = [
- "default",
- "std",
- ]
-}
-
-rust_rlib("lazy_static") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/lazy_static-1.3.0/src/lib.rs"
-}
-
-rust_rlib("libc") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/libc-0.2.62/src/lib.rs"
- features = [
- "default",
- "std",
- ]
-
- # Added by custom-build script.
- cfg = [
- "freebsd11",
- "libc_align",
- "libc_const_size_of",
- "libc_core_cvoid",
- "libc_packedN",
- "libc_priv_mod_use",
- "libc_union",
- ]
-}
-
-rust_rlib("lock_api") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/lock_api-0.1.5/src/lib.rs"
- extern_rlib = [
- # Override: use scopeguard v1.0.0 instead of v0.3.3.
- "scopeguard",
- ## Override: avoid dependency on on 'owning_ref'.
- # "owning_ref",
- ]
-
- ## Override: avoid dependency on on 'owning_ref'.
- # features = [ "owning_ref" ]
-
- ## Override: use scopeguard v1.0.0 instead of v0.3.3.
- # extern = [
- # {
- # label = ":scopeguard-0.3.3"
- # crate_type = "rlib"
- # crate_name = "scopeguard"
- # crate_version = "0.3.3"
- # },
- # ]
-}
-
-rust_rlib("log") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/log-0.4.8/src/lib.rs"
- extern_rlib = [ "cfg_if" ]
-
- # Added by custom-build script.
- cfg = [ "atomic_cas" ]
-}
-
-rust_rlib("matches") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/matches-0.1.8/lib.rs"
-}
-
-rust_rlib("memchr") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/memchr-2.2.1/src/lib.rs"
- features = [
- "default",
- "use_std",
- ]
-
- # Added by custom-build script.
- cfg = [
- "memchr_runtime_avx",
- "memchr_runtime_simd",
- "memchr_runtime_sse2",
- "memchr_runtime_sse42",
- ]
-}
-
-rust_rlib("memoffset") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/memoffset-0.5.1/src/lib.rs"
-
- # Added by custom-build script.
- cfg = [ "memoffset_maybe_uninit" ]
-}
-
-rust_rlib("mime") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mime-0.3.13/src/lib.rs"
- extern_rlib = [ "unicase" ]
-}
-
-rust_rlib("mime_guess") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mime_guess-2.0.1/src/lib.rs"
- features = [
- "default",
- "rev-mappings",
- ]
- extern_rlib = [
- "mime",
- "unicase",
- ]
-
- # Contains file generated by custom-build script: 'mime_types_generated.rs'.
- generated_source_dir =
- "$cargo_home/registry/gen/github.com-1ecc6299db9ec823/mime_guess-2.0.1"
-}
-
-rust_rlib("miniz_oxide") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/miniz_oxide-0.3.2/src/lib.rs"
- extern_rlib = [ "adler32" ]
-}
-
-rust_rlib("mio") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-0.6.19/src/lib.rs"
- features = [
- "default",
- "with-deprecated",
- ]
- extern_rlib = [
- "iovec",
- "log",
- "net2",
- "slab",
- ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "kernel32" ]
- extern = [
- {
- label = ":miow-0.2.1"
- crate_type = "rlib"
- crate_name = "miow"
- crate_version = "0.2.1"
- },
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
- }
-}
-
-rust_rlib("net2") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/net2-0.2.33/src/lib.rs"
- features = [
- "default",
- "duration",
- ]
- extern_rlib = [ "cfg_if" ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("nodrop") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/nodrop-0.1.13/src/lib.rs"
-}
-
-rust_rlib("num_cpus") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/num_cpus-1.10.1/src/lib.rs"
- extern_rlib = [ "libc" ]
-}
-
-## Override: avoid dependency on on 'owning_ref'.
-# rust_rlib("owning_ref") {
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/owning_ref-0.4.0/src/lib.rs"
-# extern_rlib = [ "stable_deref_trait" ]
-# }
-
-rust_rlib("parking_lot") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/parking_lot-0.7.1/src/lib.rs"
- features = [
- "default",
- ## Override: avoid dependency on on 'owning_ref'.
- # "owning_ref",
- ]
- extern_rlib = [
- "lock_api",
- "parking_lot_core",
- ]
-}
-
-rust_rlib("parking_lot_core") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/parking_lot_core-0.4.0/src/lib.rs"
- extern_rlib = [
- "rand",
- "smallvec",
- ]
-
- # Added by custom-build script.
- cfg = [ "has_localkey_try_with" ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("percent_encoding") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs"
-}
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("ppv_lite86") {
-# cap_lints = "allow"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ppv-lite86-0.2.5/src/lib.rs"
-# features = [
-# "default",
-# "simd",
-# "std",
-# ]
-# }
-
-rust_rlib("proc_macro2") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/proc-macro2-1.0.1/src/lib.rs"
- features = [
- "default",
- "proc-macro",
- ]
- extern_rlib = [ "unicode_xid" ]
-
- # Added by custom-build script.
- cfg = [
- "use_proc_macro",
- "wrap_proc_macro",
- ]
-}
-
-rust_rlib("publicsuffix") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/publicsuffix-1.5.2/src/lib.rs"
- extern_rlib = [
- "error_chain",
- "idna",
- "lazy_static",
- "regex",
- "url",
- ]
-}
-
-rust_rlib("quote") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/quote-1.0.2/src/lib.rs"
- features = [
- "default",
- "proc-macro",
- ]
- extern_rlib = [ "proc_macro2" ]
-}
-
-rust_rlib("rand") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand-0.6.5/src/lib.rs"
- features = [
- "alloc",
- "default",
- "rand_os",
- "std",
- ]
- extern_rlib = [
- "rand_hc",
- "rand_isaac",
- "rand_jitter",
- "rand_os",
- "rand_pcg",
- "rand_xorshift",
- ]
- extern = [
- {
- label = ":rand_chacha-0.1.1"
- crate_type = "rlib"
- crate_name = "rand_chacha"
- crate_version = "0.1.1"
- },
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- ]
-
- # Added by custom-build script.
- cfg = [
- "rustc_1_25",
- "rustc_1_26",
- "rustc_1_27",
- ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("rand_chacha") {
-# cap_lints = "allow"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.2.1/src/lib.rs"
-# features = [
-# "default",
-# "simd",
-# "std",
-# ]
-# extern_rlib = [
-# "c2_chacha",
-# "rand_core",
-# ]
-# }
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("rand_core") {
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_core-0.5.0/src/lib.rs"
-# features = [
-# "alloc",
-# "getrandom",
-# "std",
-# ]
-# extern_rlib = [ "getrandom" ]
-# }
-
-rust_rlib("rand_hc") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_hc-0.1.0/src/lib.rs"
-
- # Override: use rand_core v0.4.2 instead of v0.3.1.
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- # {
- # label = ":rand_core-0.3.1"
- # crate_type = "rlib"
- # crate_name = "rand_core"
- # crate_version = "0.3.1"
- # },
- ]
-}
-
-rust_rlib("rand_isaac") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_isaac-0.1.1/src/lib.rs"
-
- # Override: use rand_core v0.4.2 instead of v0.3.1.
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- # {
- # label = ":rand_core-0.3.1"
- # crate_type = "rlib"
- # crate_name = "rand_core"
- # crate_version = "0.3.1"
- # },
- ]
-}
-
-rust_rlib("rand_jitter") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_jitter-0.1.4/src/lib.rs"
- features = [ "std" ]
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- ]
- if (is_mac) {
- extern_rlib = [ "libc" ]
- }
- if (is_win) {
- extern_rlib = [ "winapi" ]
- }
-}
-
-rust_rlib("rand_os") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_os-0.1.3/src/lib.rs"
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- ]
- if (is_posix) {
- extern_rlib = [ "libc" ]
- }
-
- # Per the #[link(...)] attribute found in 'src/macos.rs'.
- if (is_mac) {
- libs = [ "Security.framework" ]
- }
- if (is_win) {
- extern_rlib = [ "winapi" ]
- }
-}
-
-rust_rlib("rand_pcg") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_pcg-0.1.2/src/lib.rs"
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- ]
-
- # Added by custom-build script.
- cfg = [ "rustc_1_26" ]
-}
-
-rust_rlib("rand_xorshift") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_xorshift-0.1.1/src/lib.rs"
-
- # Override: use rand_core v0.4.2 instead of v0.3.1.
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- # {
- # label = ":rand_core-0.3.1"
- # crate_type = "rlib"
- # crate_name = "rand_core"
- # crate_version = "0.3.1"
- # },
- ]
-}
-
-rust_rlib("regex") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/regex-1.2.1/src/lib.rs"
- features = [
- "default",
- "use_std",
- ]
- extern_rlib = [
- "aho_corasick",
- "memchr",
- "regex_syntax",
- "thread_local",
- ]
-}
-
-rust_rlib("regex_syntax") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/regex-syntax-0.6.11/src/lib.rs"
-}
-
-rust_rlib("remove_dir_all") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.2/src/lib.rs"
- if (is_win) {
- extern_rlib = [ "winapi" ]
- }
-}
-
-rust_rlib("reqwest") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/reqwest-0.9.20/src/lib.rs"
- features = [
- "hyper-rustls",
- "rustls",
- "rustls-tls",
- "tls",
- "tokio-rustls",
- "webpki-roots",
- ]
- extern_rlib = [
- "base64",
- "bytes",
- "cookie",
- "cookie_store",
- "encoding_rs",
- "flate2",
- "futures",
- "http",
- "hyper",
- "hyper_rustls",
- "log",
- "mime",
- "mime_guess",
- "rustls",
- "serde",
- "serde_json",
- "serde_urlencoded",
- "time",
- "tokio",
- "tokio_executor",
- "tokio_io",
- "tokio_rustls",
- "tokio_threadpool",
- "tokio_timer",
- "url",
- "uuid",
- "webpki_roots",
- ]
-
- # These env vars are used by reqwest to set its user-agent string.
- env = [
- "CARGO_PKG_NAME=reqwest",
- "CARGO_PKG_VERSION=0.9.20",
- ]
- if (is_win) {
- extern_rlib += [ "winreg" ]
- }
-}
-
-rust_rlib("ring") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/src/lib.rs"
- features = [
- "alloc",
- "default",
- "dev_urandom_fallback",
- "lazy_static",
- ]
- deps = [
- ":ring-core",
- ## Override: don't build 'ring-test' static library.
- # ":ring-test",
- ]
- extern_rlib = [
- "spin",
- "untrusted",
- ]
- if (is_linux) {
- extern_rlib += [
- "lazy_static",
- "libc",
- ]
- }
-
- # Per the #[link(...)] attribute found in 'src/rand.rs'.
- if (is_mac) {
- libs = [ "Security.framework" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-static_library("ring-core") {
- include_dirs = [
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/include",
- ]
- sources = [
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/cpu-intel.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/crypto.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/bn/generic.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/bn/montgomery.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/bn/montgomery_inv.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/ec/ecp_nistz.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/ec/ecp_nistz256.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/ec/gfp_p256.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/ec/gfp_p384.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/fipsmodule/modes/gcm.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/limbs/limbs.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/mem.c",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/third_party/fiat/curve25519.c",
- ]
- if (is_linux) {
- sources += [
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aes-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-gcm-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/chacha-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/ghash-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/p256-x86_64-asm-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/poly1305-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha256-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha512-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/vpaes-x86_64-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont-elf.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont5-elf.S",
- ]
-
- # Supress "warning: '_GNU_SOURCE' macro redefined."
- cflags = [ "-Wno-macro-redefined" ]
- }
- if (is_mac) {
- sources += [
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aes-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-gcm-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/chacha-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/ghash-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/p256-x86_64-asm-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/poly1305-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha256-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha512-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/vpaes-x86_64-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont-macosx.S",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont5-macosx.S",
- ]
- }
- if (is_win) {
- libs = [
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aes-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-gcm-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/aesni-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/chacha-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/ghash-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/p256-x86_64-asm-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/poly1305-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha256-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/sha512-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/vpaes-x86_64-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont-nasm.obj",
- "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/pregenerated/x86_64-mont5-nasm.obj",
- ]
-
- # Suppress "warning: '_addcarry_u64' is not a recognized builtin."
- cflags = [ "-Wno-ignored-pragma-intrinsic" ]
- }
-}
-
-## Override: don't build 'ring-test' static library.
-# static_library("ring-test") {
-# include_dirs = [ "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/include" ]
-# sources = [ "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ring-0.16.8/crypto/constant_time_test.c" ]
-# }
-
-rust_rlib("rustls") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rustls-0.16.0/src/lib.rs"
- features = [
- "dangerous_configuration",
- "default",
- "log",
- "logging",
- ]
- extern_rlib = [
- "base64",
- "log",
- "ring",
- "sct",
- "webpki",
- ]
-}
-
-rust_rlib("rustyline") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rustyline-5.0.2/src/lib.rs"
- features = [
- "default",
- "dirs",
- "with-dirs",
- ]
- extern_rlib = [
- "dirs",
- "libc",
- "log",
- "memchr",
- "unicode_segmentation",
- "unicode_width",
- ]
- if (is_posix) {
- extern_rlib += [
- "nix",
- "utf8parse",
- ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("ryu") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ryu-1.0.0/src/lib.rs"
-
- # Added by custom-build script.
- cfg = [
- "integer128",
- "must_use_return",
- ]
-}
-
-rust_rlib("scopeguard") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/scopeguard-1.0.0/src/lib.rs"
-}
-
-rust_rlib("sct") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/sct-0.6.0/src/lib.rs"
- extern_rlib = [
- "ring",
- "untrusted",
- ]
-}
-
-rust_rlib("serde") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde-1.0.99/src/lib.rs"
- features = [
- "default",
- "derive",
- "serde_derive",
- "std",
- ]
- extern = [
- {
- label = ":serde_derive"
- crate_type = "proc_macro"
- crate_name = "serde_derive"
- },
- ]
-
- # Added by custom-build script.
- cfg = [
- "core_duration",
- "core_reverse",
- "core_try_from",
- "de_boxed_c_str",
- "de_rc_dst",
- "integer128",
- "num_nonzero",
- "num_nonzero_signed",
- "ops_bound",
- "range_inclusive",
- "std_atomic",
- "std_atomic64",
- ]
-}
-
-rust_proc_macro("serde_derive") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde_derive-1.0.99/src/lib.rs"
- features = [ "default" ]
- extern_rlib = [
- "proc_macro2",
- "quote",
- "syn",
- ]
-}
-
-rust_rlib("serde_json") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde_json-1.0.40/src/lib.rs"
- features = [
- "default",
- "indexmap",
- "preserve_order",
- ]
- extern_rlib = [
- "indexmap",
- "itoa",
- "ryu",
- "serde",
- ]
-}
-
-rust_rlib("serde_urlencoded") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/serde_urlencoded-0.5.5/src/lib.rs"
- extern_rlib = [
- "dtoa",
- "itoa",
- "serde",
- "url",
- ]
-}
-
-rust_rlib("slab") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/slab-0.4.2/src/lib.rs"
-}
-
-rust_rlib("smallvec") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/smallvec-0.6.10/lib.rs"
- features = [
- "default",
- "std",
- ]
-}
-
-rust_rlib("source_map_mappings") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/source-map-mappings-0.5.0/src/lib.rs"
- extern_rlib = [
- "vlq",
-
- # Override: use rand v0.6.5 instead of v0.4.6.
- "rand",
- ]
-
- ## Override: use rand v0.6.5 instead of v0.4.6.
- # extern = [
- # {
- # label = ":rand-0.4.6"
- # crate_type = "rlib"
- # crate_name = "rand"
- # crate_version = "0.4.6"
- # },
- # ]
-}
-
-rust_rlib("spin") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/spin-0.5.2/src/lib.rs"
-}
-
-## Override: avoid dependency on on 'owning_ref'.
-# rust_rlib("stable_deref_trait") {
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/stable_deref_trait-1.1.1/src/lib.rs"
-# features = [
-# "default",
-# "std",
-# ]
-# }
-
-rust_rlib("string") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/string-0.2.1/src/lib.rs"
- features = [
- "bytes",
- "default",
- ]
- extern_rlib = [ "bytes" ]
-}
-
-rust_rlib("strsim") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/strsim-0.8.0/src/lib.rs"
-}
-
-rust_rlib("syn") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/syn-1.0.3/src/lib.rs"
- features = [
- "clone-impls",
- "default",
- "derive",
- "full",
- "parsing",
- "printing",
- "proc-macro",
- "quote",
- "visit",
- ]
- extern_rlib = [
- "proc_macro2",
- "quote",
- "unicode_xid",
- ]
-
- # Added by custom-build script.
- cfg = [ "syn_disable_nightly_tests" ]
-}
-
-rust_rlib("synstructure") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/synstructure-0.10.2/src/lib.rs"
- extern_rlib = [
- # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- "proc_macro2",
-
- # Override: use quote v1.0.2 instead of v0.6.13.
- "quote",
-
- # Override: use unicode_xid v0.2.0 instead of v0.1.0.
- "unicode_xid",
- ]
- extern = [
- {
- label = ":syn-0.15.44"
- crate_type = "rlib"
- crate_name = "syn"
- crate_version = "0.15.44"
- },
-
- ## Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- # {
- # label = ":proc_macro2-0.4.30"
- # crate_type = "rlib"
- # crate_name = "proc_macro2"
- # crate_version = "0.4.30"
- # },
-
- ## Override: use quote v1.0.2 instead of v0.6.13.
- # {
- # label = ":quote-0.6.13"
- # crate_type = "rlib"
- # crate_name = "quote"
- # crate_version = "0.6.13"
- # },
-
- ## Override: use unicode_xid v0.2.0 instead of v0.1.0.
- # {
- # label = ":unicode_xid-0.1.0"
- # crate_type = "rlib"
- # crate_name = "unicode_xid"
- # crate_version = "0.1.0"
- # },
- ]
-}
-
-rust_rlib("tempfile") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tempfile-3.1.0/src/lib.rs"
- extern_rlib = [
- "cfg_if",
- "remove_dir_all",
-
- # Override: use rand v0.6.5 instead of v0.7.0.
- "rand",
- ]
-
- ## Override: use rand v0.6.5 instead of v0.7.0.
- # extern = [
- # {
- # label = ":rand-0.7.0"
- # crate_type = "rlib"
- # crate_name = "rand"
- # crate_version = "0.7.0"
- # },
- # ]
- if (is_posix) {
- extern_rlib += [ "libc" ]
- }
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("termcolor") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/termcolor-1.0.5/src/lib.rs"
- if (is_win) {
- extern_rlib = [ "wincolor" ]
- }
-}
-
-rust_rlib("textwrap") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/textwrap-0.11.0/src/lib.rs"
- extern_rlib = [ "unicode_width" ]
-}
-
-rust_rlib("thread_local") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/thread_local-0.3.6/src/lib.rs"
- extern_rlib = [ "lazy_static" ]
-}
-
-rust_rlib("time") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/time-0.1.42/src/lib.rs"
- extern_rlib = [ "libc" ]
- if (is_win) {
- extern_rlib += [ "winapi" ]
- }
-}
-
-rust_rlib("tokio") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-0.1.22/src/lib.rs"
- features = [
- "bytes",
- "codec",
- "default",
- "fs",
- "io",
- "mio",
- "num_cpus",
- "reactor",
- "rt-full",
- "sync",
- "tcp",
- "timer",
- "tokio-codec",
- "tokio-current-thread",
- "tokio-executor",
- "tokio-fs",
- "tokio-io",
- "tokio-reactor",
- "tokio-sync",
- "tokio-tcp",
- "tokio-threadpool",
- "tokio-timer",
- "tokio-udp",
- "tokio-uds",
- "udp",
- "uds",
- ]
- extern_rlib = [
- "bytes",
- "futures",
- "mio",
- "num_cpus",
- "tokio_codec",
- "tokio_current_thread",
- "tokio_executor",
- "tokio_fs",
- "tokio_io",
- "tokio_reactor",
- "tokio_sync",
- "tokio_tcp",
- "tokio_threadpool",
- "tokio_timer",
- "tokio_udp",
- ]
- if (is_posix) {
- extern_rlib += [ "tokio_uds" ]
- }
-}
-
-rust_rlib("tokio_buf") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-buf-0.1.1/src/lib.rs"
- features = [
- "default",
- "either",
- "util",
- ]
- extern_rlib = [
- "bytes",
- "either",
- "futures",
- ]
-}
-
-rust_rlib("tokio_codec") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-codec-0.1.1/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "tokio_io",
- ]
-}
-
-rust_rlib("tokio_current_thread") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-current-thread-0.1.6/src/lib.rs"
- extern_rlib = [
- "futures",
- "tokio_executor",
- ]
-}
-
-rust_rlib("tokio_executor") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-executor-0.1.8/src/lib.rs"
- extern_rlib = [
- "crossbeam_utils",
- "futures",
- ]
-}
-
-rust_rlib("tokio_fs") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-fs-0.1.6/src/lib.rs"
- extern_rlib = [
- "futures",
- "tokio_io",
- "tokio_threadpool",
- ]
-}
-
-rust_rlib("tokio_io") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-io-0.1.12/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "log",
- ]
-}
-
-rust_rlib("tokio_process") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-process-0.2.4/src/lib.rs"
- extern_rlib = [
- "futures",
- "tokio_io",
- "tokio_reactor",
- ]
- if (is_posix) {
- extern_rlib += [
- "crossbeam_queue",
- "lazy_static",
- "libc",
- "log",
- "mio",
- "tokio_signal",
- ]
- }
- if (is_win) {
- extern_rlib += [
- "mio_named_pipes",
- "winapi",
- ]
- }
-}
-
-rust_rlib("tokio_reactor") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-reactor-0.1.9/src/lib.rs"
- extern_rlib = [
- "crossbeam_utils",
- "futures",
- "lazy_static",
- "log",
- "mio",
- "num_cpus",
- "parking_lot",
- "slab",
- "tokio_executor",
- "tokio_io",
- "tokio_sync",
- ]
-}
-
-rust_rlib("tokio_rustls") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-rustls-0.10.0/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "iovec",
- "rustls",
- "tokio_io",
- "webpki",
- ]
-}
-
-rust_rlib("tokio_sync") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-sync-0.1.6/src/lib.rs"
- extern_rlib = [
- "fnv",
- "futures",
- ]
-}
-
-rust_rlib("tokio_tcp") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-tcp-0.1.3/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "iovec",
- "mio",
- "tokio_io",
- "tokio_reactor",
- ]
-}
-
-rust_rlib("tokio_threadpool") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-threadpool-0.1.15/src/lib.rs"
- extern_rlib = [
- "crossbeam_deque",
- "crossbeam_queue",
- "crossbeam_utils",
- "futures",
- "log",
- "num_cpus",
- "rand",
- "slab",
- "tokio_executor",
- ]
-}
-
-rust_rlib("tokio_timer") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-timer-0.2.11/src/lib.rs"
- extern_rlib = [
- "crossbeam_utils",
- "futures",
- "slab",
- "tokio_executor",
- ]
-}
-
-rust_rlib("tokio_udp") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-udp-0.1.3/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "log",
- "mio",
- "tokio_codec",
- "tokio_io",
- "tokio_reactor",
- ]
-}
-
-rust_rlib("try_from") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/try_from-0.3.2/src/lib.rs"
- extern_rlib = [ "cfg_if" ]
-}
-
-rust_rlib("try_lock") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/try-lock-0.2.2/src/lib.rs"
-}
-
-rust_rlib("unicase") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicase-2.4.0/src/lib.rs"
-
- # Added by custom-build script.
- cfg = [
- "__unicase__const_fns",
- "__unicase__default_hasher",
- "__unicase__iter_cmp",
- ]
-}
-
-rust_rlib("unicode_bidi") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs"
- features = [ "default" ]
- extern_rlib = [ "matches" ]
-}
-
-rust_rlib("unicode_normalization") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.8/src/lib.rs"
- extern_rlib = [ "smallvec" ]
-}
-
-rust_rlib("unicode_segmentation") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-segmentation-1.3.0/src/lib.rs"
-}
-
-rust_rlib("unicode_width") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-width-0.1.6/src/lib.rs"
- features = [ "default" ]
-}
-
-rust_rlib("unicode_xid") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.2.0/src/lib.rs"
- features = [ "default" ]
-}
-
-rust_rlib("untrusted") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/untrusted-0.7.0/src/untrusted.rs"
-}
-
-rust_rlib("url") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/url-1.7.2/src/lib.rs"
- extern_rlib = [
- "idna",
- "matches",
- "percent_encoding",
- ]
-}
-
-rust_rlib("utime") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/utime-0.2.1/src/lib.rs"
- extern_rlib = [ "libc" ]
- if (is_win) {
- extern_rlib += [ "kernel32" ]
- extern = [
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
- }
-
- # if (is_posix) {
- # # Override: 'kernel32' should be a windows-only dependency.
- # extern_rlib += [ "kernel32" ]
- #
- # # Override: 'winapi' should be a windows-only dependency.
- # extern = [
- # {
- # label = ":winapi-0.2.8"
- # crate_type = "rlib"
- # crate_name = "winapi"
- # crate_version = "0.2.8"
- # },
- # ]
- # }
-}
-
-rust_rlib("uuid") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/uuid-0.7.4/src/lib.rs"
- features = [
- "default",
- "rand",
- "std",
- "v4",
- ]
- extern_rlib = [ "rand" ]
-}
-
-rust_rlib("vec_map") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/vec_map-0.8.1/src/lib.rs"
-}
-
-rust_rlib("vlq") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/vlq-0.5.1/src/lib.rs"
-}
-
-rust_rlib("want") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/want-0.2.0/src/lib.rs"
- extern_rlib = [
- "futures",
- "log",
- "try_lock",
- ]
-}
-
-rust_rlib("webpki") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/webpki-0.21.0/src/webpki.rs"
- features = [
- "default",
- "std",
- "trust_anchor_util",
- ]
- extern_rlib = [
- "ring",
- "untrusted",
- ]
-}
-
-rust_rlib("webpki_roots") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/webpki-roots-0.17.0/src/lib.rs"
- extern_rlib = [ "webpki" ]
-}
-
-## Override: use proc_macro2 v1.0.1 instead.
-# rust_rlib("proc_macro2-0.4.30") {
-# crate_name = "proc_macro2"
-# crate_version = "0.4.30"
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/proc-macro2-0.4.30/src/lib.rs"
-# features = [
-# "default",
-# "proc-macro",
-# ]
-# extern = [
-# {
-# label = ":unicode_xid-0.1.0"
-# crate_type = "rlib"
-# crate_name = "unicode_xid"
-# crate_version = "0.1.0"
-# },
-# ]
-#
-# # Added by custom-build script.
-# cfg = [
-# "u128",
-# "use_proc_macro",
-# "wrap_proc_macro",
-# ]
-# }
-
-# rust_rlib("quote-0.6.13") {
-# crate_name = "quote"
-# crate_version = "0.6.13"
-#
-# # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
-# extern = [
-# {
-# label = ":proc_macro2-0.4.30"
-# crate_type = "rlib"
-# crate_name = "proc_macro2"
-# crate_version = "0.4.30"
-# },
-# ]
-#
-# # Override: use quote v1.0.2 instead.
-# cap_lints = "allow"
-#
-# # Override: use quote v1.0.2 instead.
-# edition = "2015"
-#
-# # Override: use quote v1.0.2 instead.
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/quote-0.6.13/src/lib.rs"
-#
-# # Override: use quote v1.0.2 instead.
-# features = [
-# "default",
-# "proc-macro",
-# ]
-#
-# # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
-# # Override: use quote v1.0.2 instead.
-# extern_rlib = [ "proc_macro2" ]
-# }
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("rand-0.4.6") {
-# crate_name = "rand"
-# crate_version = "0.4.6"
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand-0.4.6/src/lib.rs"
-# features = [
-# "default",
-# "libc",
-# "std",
-# ]
-# if (is_posix) {
-# extern_rlib = [ "libc" ]
-# }
-#
-# # Per the #[link(...)] attribute found in 'src/os.rs'.
-# if (is_mac) {
-# libs = [ "Security.framework" ]
-# }
-# if (is_win) {
-# extern_rlib = [ "winapi" ]
-# }
-# }
-
-## Override: use rand v0.6.5 instead.
-# rust_rlib("rand-0.7.0") {
-# crate_name = "rand"
-# crate_version = "0.7.0"
-# cap_lints = "allow"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand-0.7.0/src/lib.rs"
-# features = [
-# "alloc",
-# "default",
-# "getrandom",
-# "getrandom_package",
-# "std",
-# ]
-# extern_rlib = [
-# "rand_chacha",
-# "rand_core",
-# ]
-# extern = [
-# {
-# label = ":getrandom"
-# crate_type = "rlib"
-# crate_name = "getrandom"
-# crate_alias = "getrandom_package"
-# },
-# ]
-# if (is_posix) {
-# extern_rlib += [ "libc" ]
-# }
-# }
-
-rust_rlib("rand_chacha-0.1.1") {
- crate_name = "rand_chacha"
- crate_version = "0.1.1"
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_chacha-0.1.1/src/lib.rs"
-
- # Added by custom-build script.
- cfg = [ "rustc_1_26" ]
-
- # Override: use rand_core v0.4.2 instead of v0.3.1.
- extern = [
- {
- label = ":rand_core-0.4.2"
- crate_type = "rlib"
- crate_name = "rand_core"
- crate_version = "0.4.2"
- },
- # {
- # label = ":rand_core-0.3.1"
- # crate_type = "rlib"
- # crate_name = "rand_core"
- # crate_version = "0.3.1"
- # },
- ]
-}
-
-## Override: use rand_core v0.4.2 instead.
-# rust_rlib("rand_core-0.3.1") {
-# crate_name = "rand_core"
-# crate_version = "0.3.1"
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_core-0.3.1/src/lib.rs"
-# extern = [
-# {
-# label = ":rand_core-0.4.2"
-# crate_type = "rlib"
-# crate_name = "rand_core"
-# crate_version = "0.4.2"
-# },
-# ]
-# }
-
-rust_rlib("rand_core-0.4.2") {
- crate_name = "rand_core"
- crate_version = "0.4.2"
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rand_core-0.4.2/src/lib.rs"
- features = [
- "alloc",
- "std",
- ]
-}
-
-## Override: use scopeguard v1.0.0 instead.
-# rust_rlib("scopeguard-0.3.3") {
-# crate_name = "scopeguard"
-# crate_version = "0.3.3"
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/scopeguard-0.3.3/src/lib.rs"
-# }
-
-rust_rlib("syn-0.15.44") {
- crate_name = "syn"
- crate_version = "0.15.44"
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/syn-0.15.44/src/lib.rs"
- features = [
- "clone-impls",
- "default",
- "derive",
- "extra-traits",
- "parsing",
- "printing",
- "proc-macro",
- "quote",
- "visit",
- ]
- extern_rlib = [
- # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- "proc_macro2",
-
- # Override: use quote v1.0.2 instead of v0.6.13.
- "quote",
-
- # Override: use unicode_xid v0.2.0 instead of v0.1.0.
- "unicode_xid",
- ]
-
- # Added by custom-build script.
- cfg = [
- "syn_can_call_macro_by_path",
- "syn_can_match_trailing_dollar",
- "syn_can_use_associated_constants",
- "syn_can_use_thread_id",
- "syn_disable_nightly_tests",
- ]
-
- # extern = [
- # # Override: use proc_macro2 v1.0.1 instead of v0.4.30.
- # {
- # label = ":proc_macro2-0.4.30"
- # crate_type = "rlib"
- # crate_name = "proc_macro2"
- # crate_version = "0.4.30"
- # },
- #
- # # Override: use quote v1.0.2 instead of v0.6.13.
- # {
- # label = ":quote-0.6.13"
- # crate_type = "rlib"
- # crate_name = "quote"
- # crate_version = "0.6.13"
- # },
- #
- # # Override: use unicode_xid v0.2.0 instead of v0.1.0.
- # {
- # label = ":unicode_xid-0.1.0"
- # crate_type = "rlib"
- # crate_name = "unicode_xid"
- # crate_version = "0.1.0"
- # },
- # ]
-}
-
-## Override: use unicode_xid v0.2.0 instead.
-# rust_rlib("unicode_xid-0.1.0") {
-# crate_name = "unicode_xid"
-# crate_version = "0.1.0"
-# cap_lints = "allow"
-# edition = "2015"
-# source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/unicode-xid-0.1.0/src/lib.rs"
-# features = [ "default" ]
-# }
-
-if (is_posix) {
- rust_rlib("arc_swap") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/arc-swap-0.4.2/src/lib.rs"
- }
-
- rust_rlib("mio_uds") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-uds-0.6.7/src/lib.rs"
- extern_rlib = [
- "iovec",
- "libc",
- "mio",
- ]
- }
-
- rust_rlib("nix") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/nix-0.14.1/src/lib.rs"
- extern_rlib = [
- "bitflags",
- "cfg_if",
- "libc",
- "void",
- ]
- }
-
- rust_rlib("signal_hook") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/signal-hook-0.1.10/src/lib.rs"
- extern_rlib = [
- "libc",
- "signal_hook_registry",
- ]
- }
-
- rust_rlib("signal_hook_registry") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/signal-hook-registry-1.1.1/src/lib.rs"
- extern_rlib = [
- "arc_swap",
- "libc",
- ]
- }
-
- rust_rlib("tokio_signal") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-signal-0.2.7/src/lib.rs"
- extern_rlib = [
- "futures",
- "libc",
- "mio",
- "mio_uds",
- "signal_hook",
- "tokio_executor",
- "tokio_io",
- "tokio_reactor",
- ]
- }
-
- rust_rlib("tokio_uds") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/tokio-uds-0.2.5/src/lib.rs"
- extern_rlib = [
- "bytes",
- "futures",
- "iovec",
- "libc",
- "log",
- "mio",
- "mio_uds",
- "tokio_codec",
- "tokio_io",
- "tokio_reactor",
- ]
- }
-
- rust_rlib("utf8parse") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/utf8parse-0.1.1/src/lib.rs"
- }
-
- rust_rlib("void") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/void-1.0.2/src/lib.rs"
- features = [
- "default",
- "std",
- ]
- }
-
- ## Override: use ansi_term v0.12.0 instead.
- # rust_rlib("ansi_term-0.11.0") {
- # crate_name = "ansi_term"
- # crate_version = "0.11.0"
- # cap_lints = "allow"
- # edition = "2015"
- # source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ansi_term-0.11.0/src/lib.rs"
- # }
-}
-
-if (is_win) {
- rust_rlib("backtrace") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/backtrace-0.3.35/src/lib.rs"
- features = [
- "backtrace-sys",
- "dbghelp",
- "default",
- "dladdr",
- "libbacktrace",
- "libunwind",
- "std",
- ]
- extern_rlib = [
- "backtrace_sys",
- "cfg_if",
- "libc",
- "rustc_demangle",
- ]
- }
-
- rust_rlib("backtrace_sys") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/backtrace-sys-0.1.31/src/lib.rs"
- extern_rlib = [ "libc" ]
-
- # Added by custom-build script.
- cfg = [ "empty" ]
- }
-
- rust_rlib("fwdansi") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/fwdansi-1.0.1/src/lib.rs"
- extern_rlib = [
- "memchr",
- "termcolor",
- ]
- }
-
- rust_rlib("kernel32") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/kernel32-sys-0.2.2/src/lib.rs"
- extern = [
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
-
- # Added by custom-build script.
- libs = [ "kernel32.lib" ]
- }
-
- rust_rlib("mio_named_pipes") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/mio-named-pipes-0.1.6/src/lib.rs"
- extern_rlib = [
- "log",
- "mio",
- "miow",
- "winapi",
- ]
- }
-
- rust_rlib("miow") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/miow-0.3.3/src/lib.rs"
- extern_rlib = [
- "socket2",
- "winapi",
- ]
- }
-
- rust_rlib("rustc_demangle") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/rustc-demangle-0.1.16/src/lib.rs"
- }
-
- rust_rlib("socket2") {
- cap_lints = "allow"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/socket2-0.3.11/src/lib.rs"
- extern_rlib = [ "winapi" ]
- }
-
- rust_rlib("winapi") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.7/src/lib.rs"
- features = [
- "consoleapi",
- "errhandlingapi",
- "fileapi",
- "handleapi",
- "impl-debug",
- "impl-default",
- "ioapiset",
- "knownfolders",
- "minwinbase",
- "minwindef",
- "namedpipeapi",
- "ntdef",
- "ntsecapi",
- "ntstatus",
- "objbase",
- "processenv",
- "processthreadsapi",
- "profileapi",
- "shlobj",
- "std",
- "synchapi",
- "sysinfoapi",
- "threadpoollegacyapiset",
- "timezoneapi",
- "winbase",
- "wincon",
- "winerror",
- "winnt",
- "winreg",
- "winsock2",
- "winuser",
- "ws2def",
- "ws2ipdef",
- "ws2tcpip",
- "wtypesbase",
-
- # Added by custom-build script.
- "basetsd",
- "cfg",
- "cfgmgr32",
- "combaseapi",
- "devpropdef",
- "excpt",
- "guiddef",
- "in6addr",
- "inaddr",
- "ktmtypes",
- "libloaderapi",
- "limits",
- "lsalookup",
- "mstcpip",
- "objidl",
- "objidlbase",
- "propidl",
- "qos",
- "rpc",
- "rpcdce",
- "rpcndr",
- "shtypes",
- "sspi",
- "subauth",
- "unknwnbase",
- "vadefs",
- "vcruntime",
- "wincontypes",
- "wincred",
- "windef",
- "wingdi",
- "wtypes",
- ]
-
- # Added by custom-build script.
- libs = [
- "advapi32.lib",
- "cfgmgr32.lib",
- "credui.lib",
- "fwpuclnt.lib",
- "gdi32.lib",
- "kernel32.lib",
- "msimg32.lib",
- "ntdll.lib",
- "ole32.lib",
- "opengl32.lib",
- "secur32.lib",
- "shell32.lib",
- "synchronization.lib",
- "user32.lib",
- "winspool.lib",
- "ws2_32.lib",
- ]
- }
-
- rust_rlib("winapi_util") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winapi-util-0.1.2/src/lib.rs"
- extern_rlib = [ "winapi" ]
- }
-
- rust_rlib("wincolor") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/wincolor-1.0.2/src/lib.rs"
- extern_rlib = [
- "winapi",
- "winapi_util",
- ]
- }
-
- rust_rlib("winreg") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winreg-0.6.2/src/lib.rs"
- extern_rlib = [ "winapi" ]
- }
-
- rust_rlib("ws2_32") {
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/ws2_32-sys-0.2.1/src/lib.rs"
- extern = [
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
-
- # Added by custom-build script.
- libs = [ "ws2_32.lib" ]
- }
-
- rust_rlib("miow-0.2.1") {
- crate_name = "miow"
- crate_version = "0.2.1"
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/miow-0.2.1/src/lib.rs"
- extern_rlib = [
- "kernel32",
- "net2",
- "ws2_32",
- ]
- extern = [
- {
- label = ":winapi-0.2.8"
- crate_type = "rlib"
- crate_name = "winapi"
- crate_version = "0.2.8"
- },
- ]
- }
-
- rust_rlib("winapi-0.2.8") {
- crate_name = "winapi"
- crate_version = "0.2.8"
- cap_lints = "allow"
- edition = "2015"
- source_root = "$cargo_home/registry/src/github.com-1ecc6299db9ec823/winapi-0.2.8/src/lib.rs"
- }
-}
diff --git a/build_extra/rust/empty_crate.rs b/build_extra/rust/empty_crate.rs
deleted file mode 100644
index 5a44ccea9..000000000
--- a/build_extra/rust/empty_crate.rs
+++ /dev/null
@@ -1,2 +0,0 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-fn main() {}
diff --git a/build_extra/rust/get_cargo_info.cmd b/build_extra/rust/get_cargo_info.cmd
deleted file mode 100644
index e9c64d088..000000000
--- a/build_extra/rust/get_cargo_info.cmd
+++ /dev/null
@@ -1,2 +0,0 @@
-REM Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-@"%PYTHON_EXE%" "%~dpn0.py" %*
diff --git a/build_extra/rust/get_cargo_info.py b/build_extra/rust/get_cargo_info.py
deleted file mode 100755
index 26e4c6e3c..000000000
--- a/build_extra/rust/get_cargo_info.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-
-import sys
-import re
-
-# Read the package version from Cargo.toml and output as json
-cargo_toml_path = sys.argv[1]
-
-for line in open(cargo_toml_path):
- match = re.search('version = "(.*)"', line)
- if match:
- print('{"version": "' + match.group(1) + '"}')
- break
diff --git a/build_extra/rust/get_rustc_info.cmd b/build_extra/rust/get_rustc_info.cmd
deleted file mode 100644
index e9c64d088..000000000
--- a/build_extra/rust/get_rustc_info.cmd
+++ /dev/null
@@ -1,2 +0,0 @@
-REM Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-@"%PYTHON_EXE%" "%~dpn0.py" %*
diff --git a/build_extra/rust/get_rustc_info.py b/build_extra/rust/get_rustc_info.py
deleted file mode 100755
index 0f39888ee..000000000
--- a/build_extra/rust/get_rustc_info.py
+++ /dev/null
@@ -1,203 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-#
-# The Rust compiler normally builds source code directly into an executable.
-# Internally, object code is produced, and then the (system) linker is called,
-# but this all happens under the covers.
-#
-# However Deno's build system uses it's own linker. For it to successfully
-# produce an executable from rustc-generated object code, it needs to link
-# with a dozen or so "built-in" Rust libraries (as in: not Cargo crates),
-# and we need to tell the linker which and where those .rlibs are.
-#
-# Hard-coding these libraries into the GN configuration isn't possible: the
-# required .rlib files have some sort of hash code in their file name, and their
-# location depends on how Rust is set up, and which toolchain is active.
-#
-# So instead, we have this script: it writes a list of linker options (ldflags)
-# to stdout, separated by newline characters. It is called from `rust.gni` when
-# GN is generating ninja files (it doesn't run in the build phase).
-#
-# There is no official way through which rustc will give us the information
-# we need, so a "back door" is used. We tell `rustc` to compile a (dummy)
-# program, and to use a custom linker. This "linker" doesn't actually link
-# anything; it just dumps it's argv to a temporary file. When rustc is done,
-# this script then reads the linker arguments from that temporary file, and
-# then filters it to remove flags that are irrelevant or undesirable.
-
-import json
-import re
-import sys
-import os
-from os import path
-import subprocess
-import tempfile
-
-
-def capture_linker_args(argsfile_path):
- with open(argsfile_path, "wb") as argsfile:
- argsfile.write("\n".join(sys.argv[1:]))
-
-
-def get_ldflags(rustc_args):
- # Prepare the environment for rustc.
- rustc_env = os.environ.copy()
-
- # We'll capture the arguments rustc passes to the linker by telling it
- # that this script *is* the linker.
- # On Posix systems, this file is directly executable thanks to it's shebang.
- # On Windows, we use a .cmd wrapper file.
- if os.name == "nt":
- rustc_linker_base, _rustc_linker_ext = path.splitext(__file__)
- rustc_linker = rustc_linker_base + ".cmd"
- else:
- rustc_linker = __file__
-
- # Make sure that when rustc invokes this script, it uses the same version
- # of the Python interpreter as we're currently using. On Posix systems this
- # is done making the Python directory the first element of PATH.
- # On Windows, the wrapper script uses the PYTHON_EXE environment variable.
- if os.name == "nt":
- rustc_env["PYTHON_EXE"] = sys.executable
- else:
- python_dir = path.dirname(sys.executable)
- rustc_env["PATH"] = python_dir + path.pathsep + os.environ["PATH"]
-
- # Create a temporary file to write captured Rust linker arguments to.
- # Unfortunately we can't use tempfile.NamedTemporaryFile here, because the
- # file it creates can't be open in two processes at the same time.
- argsfile_fd, argsfile_path = tempfile.mkstemp()
- rustc_env["ARGSFILE_PATH"] = argsfile_path
-
- try:
- # Build the rustc command line.
- # * `-Clinker=` tells rustc to use our fake linker.
- # * `-Csave-temps` prevents rustc from deleting object files after
- # linking. We need to preserve the extra object file with allocator
- # symbols (`_rust_alloc` etc.) in it that rustc produces.
- rustc_cmd = [
- "rustc",
- "-Clinker=" + rustc_linker,
- "-Csave-temps",
- ] + rustc_args
-
- # Spawn the rust compiler.
- rustc_proc = subprocess.Popen(
- rustc_cmd,
- env=rustc_env,
- stdout=subprocess.PIPE,
- stderr=subprocess.STDOUT)
-
- # Forward rustc's output to stderr.
- for line in rustc_proc.stdout:
- # Suppress the warning:
- # `-C save-temps` might not produce all requested temporary
- # products when incremental compilation is enabled.
- # It's pointless, because incremental compilation is disabled.
- if re.match(r"^warning:.*save-temps.*incremental compilation",
- line):
- continue
- # Also, do not write completely blank lines to stderr.
- if line.strip() == "":
- continue
- sys.stderr.write(line)
-
- # The rustc process should return zero. If not, raise an exception.
- rustc_retcode = rustc_proc.wait()
- if rustc_retcode != 0:
- raise subprocess.CalledProcessError(rustc_retcode, rustc_cmd)
-
- # Read captured linker arguments from argsfile.
- argsfile_size = os.fstat(argsfile_fd).st_size
- argsfile_content = os.read(argsfile_fd, argsfile_size)
- args = argsfile_content.split("\n")
-
- except OSError as e: # Note: in python 3 this will be a FileNotFoundError.
- print "Error executing rustc command (is rust installed?):"
- print " ".join(rustc_cmd) + "\n"
- raise e
-
- finally:
- # Close and delete the temporary file.
- os.close(argsfile_fd)
- os.unlink(argsfile_path)
-
- # From the list of captured linker arguments, build the list of ldflags that
- # we actually need.
- ldflags = []
- next_arg_is_flag_value = False
- for arg in args:
- # Note that within the following if/elif blocks, `pass` means that
- # that captured arguments gets included in `ldflags`. The final `else`
- # clause filters out unrecognized/unwanted flags.
- if next_arg_is_flag_value:
- # We're looking at a value that follows certain parametric flags,
- # e.g. the path in '-L <path>'.
- next_arg_is_flag_value = False
- elif arg.endswith(".rlib"):
- # Built-in Rust library, e.g. `libstd-8524caae8408aac2.rlib`.
- pass
- elif re.match(r"^empty_crate\.[a-z0-9]+\.rcgu.o$", arg):
- # This file is needed because it contains certain allocator
- # related symbols (e.g. `__rust_alloc`, `__rust_oom`).
- # The Rust compiler normally generates this file just before
- # linking an executable. We pass `-Csave-temps` to rustc so it
- # doesn't delete the file when it's done linking.
- pass
- elif arg.endswith(".crate.allocator.rcgu.o"):
- # Same as above, but for rustc version 1.29.0 and older.
- pass
- elif arg.endswith(".lib") and not arg.startswith("msvcrt"):
- # Include most Windows static/import libraries (e.g. `ws2_32.lib`).
- # However we ignore Rusts choice of C runtime (`mvcrt*.lib`).
- # Rust insists on always using the release "flavor", even in debug
- # mode, which causes conflicts with other libraries we link with.
- pass
- elif arg.upper().startswith("/LIBPATH:"):
- # `/LIBPATH:<path>`: Linker search path (Microsoft style).
- pass
- elif arg == "-l" or arg == "-L":
- # `-l <name>`: Link with library (GCC style).
- # `-L <path>`: Linker search path (GCC style).
- next_arg_is_flag_value = True # Ensure flag argument is captured.
- elif arg == "-Wl,--start-group" or arg == "-Wl,--end-group":
- # Start or end of an archive group (GCC style).
- pass
- else:
- # Not a flag we're interested in -- don't add it to ldflags.
- continue
-
- ldflags += [arg]
-
- return ldflags
-
-
-def get_version():
- version = subprocess.check_output(["rustc", "--version"])
- version = version.strip() # Remove trailing newline.
- return version
-
-
-def main():
- # If ARGSFILE_PATH is set this script is being invoked by rustc, which
- # thinks we are a linker. All we do now is write our argv to the specified
- # file and exit. Further processing is done by our grandparent process,
- # also this script but invoked by gn.
- argsfile_path = os.getenv("ARGSFILE_PATH")
- if argsfile_path is not None:
- return capture_linker_args(argsfile_path)
-
- empty_crate_source = path.join(path.dirname(__file__), "empty_crate.rs")
-
- info = {
- "version": get_version(),
- "ldflags_bin": get_ldflags([empty_crate_source]),
- "ldflags_test": get_ldflags([empty_crate_source, "--test"])
- }
-
- # Write the information dict as a json object.
- json.dump(info, sys.stdout)
-
-
-if __name__ == '__main__':
- sys.exit(main())
diff --git a/build_extra/rust/run.py b/build_extra/rust/run.py
deleted file mode 100644
index 7c6bea08a..000000000
--- a/build_extra/rust/run.py
+++ /dev/null
@@ -1,47 +0,0 @@
-#!/usr/bin/env python
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-
-# This file just executes its arguments, except that it allows overriding
-# environment variables using command-line arguments.
-
-import subprocess
-import sys
-import os
-import re
-
-args = []
-env = os.environ.copy()
-
-if sys.platform == 'win32':
- # On Windows, when gn is setting up the build toolchain, it produces a set
- # of environment variables that are required to invoke the right build
- # toolchain. We need to load those environment variables here too in order
- # for rustc to be able to successfully invoke the linker tool.
- # The file is in 'windows environment block' format, which contains
- # multiple 'key=value' pairs, separated by '\0' bytes, and terminated by
- # two '\0' bytes at the end.
- gn_env_pairs = open("environment.x64").read()[:-2].split('\0')
- gn_env = dict([pair.split('=', 1) for pair in gn_env_pairs])
- env.update(gn_env)
-
-# This is for src/msg.rs to know where to find msg_generated.rs.
-# When building with Cargo this variable is set by build.rs.
-env["GN_OUT_DIR"] = os.path.abspath(".")
-assert os.path.isdir(env["GN_OUT_DIR"])
-
-# Environment variables can be specified on the command line using
-# '--env=variable=value' flags. These flags are not passed through to rustc.
-# This is useful to set env vars that are normally automatically set by Cargo,
-# e.g. CARGO_PKG_NAME, CARGO_PKG_VERSION, OUT_DIR, etc.
-for arg in sys.argv[1:]:
- match = re.search('--env=([^=]+)=(.*)', arg)
- if match:
- key, value = match.groups()
- if key == "OUT_DIR":
- # OUT_DIR needs to contain an absolute path.
- value = os.path.abspath(value)
- env[key] = value
- else:
- args.append(arg)
-
-sys.exit(subprocess.call(args, env=env))
diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni
deleted file mode 100644
index 28d606a1c..000000000
--- a/build_extra/rust/rust.gni
+++ /dev/null
@@ -1,380 +0,0 @@
-# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-declare_args() {
- # Absolute path of rust build files.
- rust_build = "//build_extra/rust/"
-
- # Wrapper executable for rustc invocations. This can be used for a caching
- # utility, e.g. sccache.
- rustc_wrapper = ""
-
- # treat the warnings in rust files as errors
- rust_treat_warnings_as_errors = true
-}
-
-if (is_linux) {
- executable_suffix = ""
- shared_lib_prefix = "lib"
- shared_lib_suffix = ".so"
-} else if (is_mac) {
- executable_suffix = ""
- shared_lib_prefix = "lib"
- shared_lib_suffix = ".dylib"
-} else if (is_win) {
- executable_suffix = ".exe"
- shared_lib_prefix = ""
- shared_lib_suffix = ".dll"
-} else {
- assert(false, "Unsupported platform")
-}
-
-# To simplify transitive dependency management with gn, we build all rust
-# crates into the same directory. We need to be careful not to have crates
-# with the same name.
-out_dir = "$root_out_dir/rust_crates"
-
-# The official way of building Rust executables is to to let rustc do the
-# linking. However, we'd prefer to leave it in the hands of gn/ninja:
-# * It allows us to use source sets.
-# * It allows us to use the bundled lld that Chromium and V8 use.
-# * We have more control over build flags.
-# * To sidestep rustc weirdness (e.g. on Windows, it always links with the
-# release C runtime library, even for debug builds).
-#
-# The `get_rustc_info` tool outputs the linker flags that are needed to
-# successfully link rustc object code into an executable.
-# We generate two sets of ldflags:
-# `ldflags_bin` : Used for rust_executable targets.
-# `ldflags_test`: Used for rust_test targets; includes the test harness.
-#
-# The tool works by compiling and linking something with rustc, and analyzing
-# the arguments it passes to the system linker. That's what dummy.rs is for.
-_rustc_info = exec_script("get_rustc_info.py", [], "json")
-
-template("_rust_crate") {
- config_name = "${target_name}_config"
- action_name = "${target_name}_rustc"
-
- forward_variables_from(invoker,
- [
- "cap_lints",
- "cfg",
- "crate_name",
- "crate_type",
- "crate_version",
- "deps",
- "edition",
- "env",
- "features",
- "generated_source_dir",
- "inputs",
- "is_test",
- "libs",
- "source_root",
- "testonly",
- ])
-
- if (!defined(crate_name)) {
- crate_name = target_name
- }
- if (!defined(crate_type)) {
- crate_type = "rlib"
- }
- if (!defined(deps)) {
- deps = []
- }
- if (!defined(edition)) {
- edition = "2018"
- }
- if (!defined(is_test)) {
- is_test = false
- }
- if (!defined(libs)) {
- libs = []
- }
-
- if (defined(crate_version)) {
- # In our build setup, all crates are built in the same directory. To avoid
- # file name conflicts between when multiple versions of the same crate are
- # built, add a unique suffix to output file names.
- # Unfortunately the version number as such can't be used directly:
- # everything after the first dot (.) is thrown away by rust, so in case of
- # foo-0.2 vs foo-0.3 only the first '0' would be used, and conflicts would
- # still occur. Therefore we use a hash of the version number instead.
- crate_suffix = exec_script("//tools/sha256sum.py",
- [
- "--input=$crate_version",
- "--format=-%.8s",
- ],
- "trim string")
- } else {
- # Of most crates we use only one version; no need for all this difficulty.
- crate_suffix = ""
- }
-
- if (crate_type == "bin") {
- out_file = "$crate_name$crate_suffix.o"
- emit_type = "obj"
- } else if (crate_type == "proc-macro") {
- out_file = "$shared_lib_prefix$crate_name$crate_suffix$shared_lib_suffix"
- emit_type = "link"
- } else if (crate_type == "rlib") {
- out_file = "lib$crate_name$crate_suffix.rlib"
- emit_type = "link"
- }
- out_path = "$out_dir/$out_file"
-
- # Merge `invoker.extern` and `invoker.extern_rlib` into a single list.
- extern = []
- if (defined(invoker.extern)) {
- extern += invoker.extern
- }
- if (defined(invoker.extern_rlib)) {
- foreach(extern_crate_name, invoker.extern_rlib) {
- extern += [
- {
- label = "$rust_build:$extern_crate_name"
- crate_name = extern_crate_name
- crate_type = "rlib"
- },
- ]
- }
- }
-
- # Add output file info to every entry in the 'extern' list.
- extern_outputs = []
- foreach(info, extern) {
- extern_outputs += [
- {
- label = info.label
- crate_type = info.crate_type
- crate_name = info.crate_name
-
- if (defined(info.crate_version)) {
- crate_version = info.crate_version
- crate_suffix = exec_script("//tools/sha256sum.py",
- [
- "--input=$crate_version",
- "--format=-%.8s",
- ],
- "trim string")
- } else {
- crate_suffix = ""
- }
-
- if (defined(info.crate_alias)) {
- crate_alias = info.crate_alias
- } else {
- crate_alias = info.crate_name
- }
-
- if (crate_type == "rlib") {
- out_file = "lib$crate_name$crate_suffix.rlib"
- } else if (info.crate_type == "proc_macro") {
- out_file =
- "$shared_lib_prefix$crate_name$crate_suffix$shared_lib_suffix"
- }
- out_path = "$out_dir/$out_file"
- },
- ]
- }
-
- config(config_name) {
- foreach(info, extern_outputs) {
- if (info.crate_type == "rlib") {
- libs += [ info.out_path ]
- }
- }
- lib_dirs = [ out_dir ]
- }
-
- source_set(target_name) {
- public_deps = [
- ":$action_name",
- ]
- libs += [ out_path ]
- all_dependent_configs = [ ":$config_name" ]
- }
-
- action(action_name) {
- script = "//build_extra/rust/run.py"
- sources = [
- source_root,
- ]
- outputs = [
- out_path,
- ]
- depfile = "$out_dir/$crate_name$crate_suffix.d"
-
- if (rustc_wrapper != "") {
- args = [ rustc_wrapper ]
- } else {
- args = []
- }
-
- args += [
- "rustc",
- rebase_path(source_root, root_build_dir),
- "--crate-name=$crate_name",
- "--crate-type=$crate_type",
- "--emit=$emit_type,dep-info",
- "--edition=$edition",
- "--out-dir=" + rebase_path(out_dir, root_build_dir),
-
- # This is to disambiguate multiple versions of the same crate.
- "-Cextra-filename=$crate_suffix",
-
- # Appending the rustc version to the crate metadata ensures that they are
- # rebuilt when rustc is upgraded, by changing the command line.
- "-Cmetadata=\"${crate_suffix}_${_rustc_info.version}\"",
-
- # This is needed for transitive dependencies.
- "-L",
- "dependency=" + rebase_path(out_dir, root_build_dir),
-
- # Use colorful output even if stdout is redirected and not a tty.
- "--color=always",
- ]
-
- if (is_win) {
- # Proc-macro crates need to be linked by rustc itself, because rustc
- # doesn't expose all the information necessary to produce the correct
- # linker invocation ourselves. However gn's setup creates an environment
- # where link.exe doesn't always work, so we direct rustc to use lld-link,
- # and explicitly load the proper environment that makes it work in run.py.
- args += [
- "-Clinker-flavor=lld-link",
- "-Clinker=" + rebase_path(
- "//third_party/llvm-build/Release+Asserts/bin/lld-link.exe",
- root_build_dir),
- ]
- }
-
- if (is_debug) {
- args += [ "-g" ]
- }
- if (is_official_build) {
- args += [ "-O" ]
- }
- if (is_test) {
- args += [ "--test" ]
- }
- if (rust_treat_warnings_as_errors) {
- args += [ "-Dwarnings" ]
- }
- if (defined(cap_lints)) {
- args += [
- "--cap-lints",
- cap_lints,
- ]
- }
- if (defined(invoker.args)) {
- args += invoker.args
- }
-
- if (defined(cfg)) {
- foreach(c, cfg) {
- args += [
- "--cfg",
- c,
- ]
- }
- }
-
- if (defined(features)) {
- foreach(f, features) {
- args += [
- "--cfg",
- "feature=\"" + f + "\"",
- ]
- }
- }
-
- # Build the list of '--extern' arguments from the 'extern_outputs' array.
- foreach(info, extern_outputs) {
- args += [
- "--extern",
- info.crate_alias + "=" + rebase_path(info.out_path, root_build_dir),
- ]
- sources += [ info.out_path ]
- deps += [ info.label ]
- }
-
- if (defined(generated_source_dir)) {
- args += [
- # Some crates (e.g. 'typenum') generate source files and place them in
- # the directory indicated by the 'OUT_DIR' environment variable, which
- # is normally set by Cargo. This flag tells run.py to set 'OUT_DIR' to
- # the path where the current crate can find its generated sources.
- "--env=OUT_DIR=" + rebase_path(generated_source_dir, root_build_dir),
- ]
- }
-
- if (defined(env)) {
- foreach(e, env) {
- args += [ "--env=$e" ]
- }
- }
- }
-}
-
-template("rust_rlib") {
- _rust_crate(target_name) {
- forward_variables_from(invoker, "*")
- crate_type = "rlib"
- }
-}
-
-template("rust_proc_macro") {
- _rust_crate(target_name) {
- forward_variables_from(invoker, "*")
- crate_type = "proc-macro"
- }
-}
-
-template("rust_executable") {
- bin_name = target_name + "_bin"
- bin_label = ":" + bin_name
-
- _rust_crate(bin_name) {
- crate_type = "bin"
- forward_variables_from(invoker, "*")
- }
-
- executable(target_name) {
- forward_variables_from(invoker, "*")
-
- if (defined(is_test) && is_test) {
- ldflags = _rustc_info.ldflags_test
- } else {
- ldflags = _rustc_info.ldflags_bin
- }
-
- if (!defined(deps)) {
- deps = []
- }
-
- deps += [ bin_label ]
-
- if (defined(extern)) {
- foreach(info, extern) {
- if (info.crate_type == "rlib") {
- deps += [ info.label ]
- }
- }
- }
-
- if (defined(extern_rlib)) {
- foreach(extern_crate_name, extern_rlib) {
- deps += [ "$rust_build:$extern_crate_name" ]
- }
- }
- }
-}
-
-template("rust_test") {
- rust_executable(target_name) {
- forward_variables_from(invoker, "*")
- is_test = true
- testonly = true
- }
-}