1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Improve rust build docs

This commit is contained in:
Ryan Dahl 2018-08-02 23:06:54 -04:00
parent d63e03a8e7
commit 229e3b80c5
3 changed files with 29 additions and 33 deletions

View file

@ -1,6 +1,8 @@
# Dummy package info required by `cargo fetch` # Dummy package info required by `cargo fetch`.
# Called from tools/sync_third_party.py # Use tools/sync_third_party.py to install deps after editing this file.
# Should not be called with `cargo build` # Deno does not build with cargo. Deno uses a build system called gn.
# See build_extra/rust/BUILD.gn for the manually built configuration of rust
# crates.
[package] [package]
name = "deno" name = "deno"
version = "0.0.0" version = "0.0.0"

View file

@ -1,22 +1,23 @@
import("rust.gni") # Copyright 2018 the Deno authors. All rights reserved. MIT license.
# Dependencies between third party crates is mapped out here manually. This is # 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 # not so difficult and having it be tedious to add dependencies might help us
# avoid dependency hell later on. # avoid dependency hell later on. Always try to minimize dependencies.
# Versioning for third party rust crates is controlled in //gclient_config.py # Versioning for third party rust crates is controlled in //Cargo.toml
# TODO(ry) Use Cargo for versioning? # Use //tools/sync_third_party.py instead of running "cargo install".
import("rust.gni")
crates = "//third_party/rust_crates" crates = "//third_party/rust_crates"
registry_github = "$crates/registry/src/github.com-1ecc6299db9ec823/"
rust_component("libc") { rust_component("libc") {
source_root = source_root = "$registry_github/libc-0.2.42/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/libc-0.2.42/src/lib.rs"
features = [ "use_std" ] features = [ "use_std" ]
} }
rust_component("url") { rust_component("url") {
source_root = source_root = "$registry_github/url-1.7.1/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/url-1.7.1/src/lib.rs"
extern = [ extern = [
":matches", ":matches",
":idna", ":idna",
@ -25,7 +26,7 @@ rust_component("url") {
} }
rust_component("percent_encoding") { rust_component("percent_encoding") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/percent-encoding-1.0.1/lib.rs" source_root = "$registry_github/percent-encoding-1.0.1/lib.rs"
args = [ args = [
# TODO: Suppress some warnings at this moment # TODO: Suppress some warnings at this moment
# This should be removed when it's fixed in servo/rust-url repository # This should be removed when it's fixed in servo/rust-url repository
@ -36,13 +37,11 @@ rust_component("percent_encoding") {
} }
rust_component("matches") { rust_component("matches") {
source_root = source_root = "$registry_github/matches-0.1.6/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/matches-0.1.6/lib.rs"
} }
rust_component("idna") { rust_component("idna") {
source_root = source_root = "$registry_github/idna-0.1.5/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/idna-0.1.5/src/lib.rs"
extern = [ extern = [
":matches", ":matches",
":unicode_bidi", ":unicode_bidi",
@ -51,32 +50,29 @@ rust_component("idna") {
} }
rust_component("unicode_bidi") { rust_component("unicode_bidi") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/unicode-bidi-0.3.4/src/lib.rs" source_root = "$registry_github/unicode-bidi-0.3.4/src/lib.rs"
extern = [ ":matches" ] extern = [ ":matches" ]
} }
rust_component("unicode_normalization") { rust_component("unicode_normalization") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/unicode-normalization-0.1.7/src/lib.rs" source_root = "$registry_github/unicode-normalization-0.1.7/src/lib.rs"
} }
rust_component("log") { rust_component("log") {
source_root = source_root = "$registry_github/log-0.4.3/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/log-0.4.3/src/lib.rs"
extern = [ ":cfg_if" ] extern = [ ":cfg_if" ]
} }
rust_component("cfg_if") { rust_component("cfg_if") {
source_root = source_root = "$registry_github/cfg-if-0.1.4/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/cfg-if-0.1.4/src/lib.rs"
} }
rust_component("sha1") { rust_component("sha1") {
source_root = source_root = "$registry_github/sha1-0.6.0/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/sha1-0.6.0/src/lib.rs"
} }
rust_component("tempfile") { rust_component("tempfile") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/tempfile-3.0.3/src/lib.rs" source_root = "$registry_github/tempfile-3.0.3/src/lib.rs"
extern = [ extern = [
":libc", ":libc",
":rand", ":rand",
@ -86,8 +82,7 @@ rust_component("tempfile") {
} }
rust_component("rand") { rust_component("rand") {
source_root = source_root = "$registry_github/rand-0.5.4/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/rand-0.5.4/src/lib.rs"
extern = [ extern = [
":libc", ":libc",
":rand_core", ":rand_core",
@ -105,11 +100,11 @@ rust_component("rand") {
} }
rust_component("rand_core") { rust_component("rand_core") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/rand_core-0.2.1/src/lib.rs" source_root = "$registry_github/rand_core-0.2.1/src/lib.rs"
} }
rust_component("remove_dir_all") { rust_component("remove_dir_all") {
source_root = "$crates/registry/src/github.com-1ecc6299db9ec823/remove_dir_all-0.5.1/src/lib.rs" source_root = "$registry_github/remove_dir_all-0.5.1/src/lib.rs"
extern = [] extern = []
if (is_win) { if (is_win) {
extern += [ ":winapi" ] extern += [ ":winapi" ]
@ -117,8 +112,7 @@ rust_component("remove_dir_all") {
} }
rust_component("winapi") { rust_component("winapi") {
source_root = source_root = "$registry_github/winapi-0.3.5/src/lib.rs"
"$crates/registry/src/github.com-1ecc6299db9ec823/winapi-0.3.5/src/lib.rs"
features = [ features = [
"basetsd", "basetsd",
"cfg", "cfg",

View file

@ -64,8 +64,8 @@ def fix_symlinks():
remove_and_symlink("third_party/v8/build_overrides", remove_and_symlink("third_party/v8/build_overrides",
root("build_overrides"), True) root("build_overrides"), True)
remove_and_symlink("third_party/v8/testing", root("testing"), True) remove_and_symlink("third_party/v8/testing", root("testing"), True)
remove_and_symlink("../third_party/v8/tools/clang", remove_and_symlink("../third_party/v8/tools/clang", root("tools/clang"),
root("tools/clang"), True) True)
# Run Yarn to install JavaScript dependencies. # Run Yarn to install JavaScript dependencies.