diff options
Diffstat (limited to 'build_extra/rust')
-rw-r--r-- | build_extra/rust/BUILD.gn | 2 | ||||
-rw-r--r-- | build_extra/rust/empty_crate.rs | 1 | ||||
-rw-r--r-- | build_extra/rust/get_cargo_info.cmd | 1 | ||||
-rwxr-xr-x | build_extra/rust/get_cargo_info.py | 2 | ||||
-rw-r--r-- | build_extra/rust/get_rustc_info.cmd | 1 | ||||
-rwxr-xr-x | build_extra/rust/get_rustc_info.py | 2 | ||||
-rw-r--r-- | build_extra/rust/run.py | 1 | ||||
-rw-r--r-- | build_extra/rust/rust.gni | 1 |
8 files changed, 8 insertions, 3 deletions
diff --git a/build_extra/rust/BUILD.gn b/build_extra/rust/BUILD.gn index 37306b9c3..9e6866b8d 100644 --- a/build_extra/rust/BUILD.gn +++ b/build_extra/rust/BUILD.gn @@ -1,4 +1,4 @@ -# Copyright 2018 the Deno authors. All rights reserved. MIT license. +# 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 diff --git a/build_extra/rust/empty_crate.rs b/build_extra/rust/empty_crate.rs index f328e4d9d..5a44ccea9 100644 --- a/build_extra/rust/empty_crate.rs +++ b/build_extra/rust/empty_crate.rs @@ -1 +1,2 @@ +// 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 index 9d5ce12a1..e9c64d088 100644 --- a/build_extra/rust/get_cargo_info.cmd +++ b/build_extra/rust/get_cargo_info.cmd @@ -1 +1,2 @@ +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 index 43c964ab7..26e4c6e3c 100755 --- a/build_extra/rust/get_cargo_info.py +++ b/build_extra/rust/get_cargo_info.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2018 the Deno authors. All rights reserved. MIT license. +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import sys import re diff --git a/build_extra/rust/get_rustc_info.cmd b/build_extra/rust/get_rustc_info.cmd index 9d5ce12a1..e9c64d088 100644 --- a/build_extra/rust/get_rustc_info.cmd +++ b/build_extra/rust/get_rustc_info.cmd @@ -1 +1,2 @@ +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 index 66751c20b..0f39888ee 100755 --- a/build_extra/rust/get_rustc_info.py +++ b/build_extra/rust/get_rustc_info.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# Copyright 2018 the Deno authors. All rights reserved. MIT license. +# 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, diff --git a/build_extra/rust/run.py b/build_extra/rust/run.py index dc89c09a1..76fca8b18 100644 --- a/build_extra/rust/run.py +++ b/build_extra/rust/run.py @@ -1,4 +1,5 @@ #!/usr/bin/env python +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. # This file just executes its arguments, except that also adds GN_OUT_DIR and # CARGO_PKG_VERSION to the environ. This is for compatibility with cargo. import subprocess diff --git a/build_extra/rust/rust.gni b/build_extra/rust/rust.gni index c9434be6d..8bd1bc085 100644 --- a/build_extra/rust/rust.gni +++ b/build_extra/rust/rust.gni @@ -1,3 +1,4 @@ +# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. declare_args() { # Absolute path of rust build files. rust_build = "//build_extra/rust/" |