mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 01:44:26 -05:00
Call ninja directly from build.rs (#2020)
This commit is contained in:
parent
c9614d86c1
commit
6744bb8d75
5 changed files with 49 additions and 23 deletions
|
@ -1,7 +1,7 @@
|
||||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
// Run "cargo build -vv" if you want to see gn output.
|
// Run "cargo build -vv" if you want to see gn output.
|
||||||
mod gn {
|
mod gn {
|
||||||
include!("../gn.rs");
|
include!("../tools/gn.rs");
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
||||||
// Run "cargo build -vv" if you want to see gn output.
|
// Run "cargo build -vv" if you want to see gn output.
|
||||||
mod gn {
|
mod gn {
|
||||||
include!("../gn.rs");
|
include!("../tools/gn.rs");
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
|
@ -46,4 +46,4 @@ qrun([
|
||||||
"third_party/rustfmt/" + platform() + "/rustfmt",
|
"third_party/rustfmt/" + platform() + "/rustfmt",
|
||||||
"--config-path",
|
"--config-path",
|
||||||
rustfmt_config,
|
rustfmt_config,
|
||||||
] + find_exts(["cli", "core"], [".rs"]))
|
] + find_exts(["cli", "core", "tools"], [".rs"]))
|
||||||
|
|
|
@ -8,6 +8,7 @@ use std::process::Command;
|
||||||
|
|
||||||
pub struct Build {
|
pub struct Build {
|
||||||
gn_mode: String,
|
gn_mode: String,
|
||||||
|
root: PathBuf,
|
||||||
pub gn_out_dir: String,
|
pub gn_out_dir: String,
|
||||||
pub gn_out_path: PathBuf,
|
pub gn_out_path: PathBuf,
|
||||||
pub check_only: bool,
|
pub check_only: bool,
|
||||||
|
@ -29,14 +30,14 @@ impl Build {
|
||||||
// cd into workspace root.
|
// cd into workspace root.
|
||||||
assert!(env::set_current_dir("..").is_ok());
|
assert!(env::set_current_dir("..").is_ok());
|
||||||
|
|
||||||
let cwd = env::current_dir().unwrap();
|
let root = env::current_dir().unwrap();
|
||||||
// If not using host default target the output folder will change
|
// If not using host default target the output folder will change
|
||||||
// target/release will become target/$TARGET/release
|
// target/release will become target/$TARGET/release
|
||||||
// Gn should also be using this output directory as well
|
// Gn should also be using this output directory as well
|
||||||
// most things will work with gn using the default
|
// most things will work with gn using the default
|
||||||
// output directory but some tests depend on artifacts
|
// output directory but some tests depend on artifacts
|
||||||
// being in a specific directory relative to the main build output
|
// being in a specific directory relative to the main build output
|
||||||
let gn_out_path = cwd.join(format!("target/{}", gn_mode.clone()));
|
let gn_out_path = root.join(format!("target/{}", gn_mode.clone()));
|
||||||
let gn_out_dir = normalize_path(&gn_out_path);
|
let gn_out_dir = normalize_path(&gn_out_path);
|
||||||
|
|
||||||
// Tell Cargo when to re-run this file. We do this first, so these directives
|
// Tell Cargo when to re-run this file. We do this first, so these directives
|
||||||
|
@ -69,6 +70,7 @@ impl Build {
|
||||||
gn_out_path,
|
gn_out_path,
|
||||||
check_only,
|
check_only,
|
||||||
gn_mode,
|
gn_mode,
|
||||||
|
root,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -77,21 +79,47 @@ impl Build {
|
||||||
let status = Command::new("python")
|
let status = Command::new("python")
|
||||||
.env("DENO_BUILD_PATH", &self.gn_out_dir)
|
.env("DENO_BUILD_PATH", &self.gn_out_dir)
|
||||||
.env("DENO_BUILD_MODE", &self.gn_mode)
|
.env("DENO_BUILD_MODE", &self.gn_mode)
|
||||||
|
.env("DEPOT_TOOLS_WIN_TOOLCHAIN", "0")
|
||||||
.arg("./tools/setup.py")
|
.arg("./tools/setup.py")
|
||||||
.status()
|
.status()
|
||||||
.expect("setup.py failed");
|
.expect("setup.py failed");
|
||||||
assert!(status.success());
|
assert!(status.success());
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO(ry) call ninja directly here, not python.
|
let mut ninja = Command::new("third_party/depot_tools/ninja");
|
||||||
let status = Command::new("python")
|
let ninja = if !cfg!(target_os = "windows") {
|
||||||
.env("DENO_BUILD_PATH", &self.gn_out_dir)
|
&mut ninja
|
||||||
.env("DENO_BUILD_MODE", &self.gn_mode)
|
} else {
|
||||||
.arg("./tools/build.py")
|
// Windows needs special configuration. This is similar to the function of
|
||||||
|
// python_env() in //tools/util.py.
|
||||||
|
let python_path: Vec<String> = vec![
|
||||||
|
"third_party/python_packages",
|
||||||
|
"third_party/python_packages/win32",
|
||||||
|
"third_party/python_packages/win32/lib",
|
||||||
|
"third_party/python_packages/Pythonwin",
|
||||||
|
].into_iter()
|
||||||
|
.map(|p| self.root.join(p).into_os_string().into_string().unwrap())
|
||||||
|
.collect();
|
||||||
|
let orig_path = String::from(";")
|
||||||
|
+ &env::var_os("PATH").unwrap().into_string().unwrap();
|
||||||
|
let path = self
|
||||||
|
.root
|
||||||
|
.join("third_party/python_packages/pywin32_system32")
|
||||||
|
.into_os_string()
|
||||||
|
.into_string()
|
||||||
|
.unwrap();
|
||||||
|
ninja
|
||||||
|
.env("PYTHONPATH", python_path.join(";"))
|
||||||
|
.env("PATH", path + &orig_path)
|
||||||
|
.env("DEPOT_TOOLS_WIN_TOOLCHAIN", "0")
|
||||||
|
};
|
||||||
|
|
||||||
|
let status = ninja
|
||||||
.arg(gn_target)
|
.arg(gn_target)
|
||||||
.arg("-v")
|
.arg("-C")
|
||||||
|
.arg(&self.gn_out_dir)
|
||||||
.status()
|
.status()
|
||||||
.expect("build.py failed");
|
.expect("ninja failed");
|
||||||
assert!(status.success());
|
assert!(status.success());
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -4,10 +4,10 @@
|
||||||
#![deny(warnings)]
|
#![deny(warnings)]
|
||||||
extern crate hyper;
|
extern crate hyper;
|
||||||
|
|
||||||
use std::env;
|
|
||||||
use hyper::{Body, Response, Server};
|
|
||||||
use hyper::service::service_fn_ok;
|
|
||||||
use hyper::rt::{self, Future};
|
use hyper::rt::{self, Future};
|
||||||
|
use hyper::service::service_fn_ok;
|
||||||
|
use hyper::{Body, Response, Server};
|
||||||
|
use std::env;
|
||||||
|
|
||||||
static PHRASE: &'static [u8] = b"Hello World!";
|
static PHRASE: &'static [u8] = b"Hello World!";
|
||||||
|
|
||||||
|
@ -22,17 +22,15 @@ fn main() {
|
||||||
// new_service is run for each connection, creating a 'service'
|
// new_service is run for each connection, creating a 'service'
|
||||||
// to handle requests for that specific connection.
|
// to handle requests for that specific connection.
|
||||||
let new_service = || {
|
let new_service = || {
|
||||||
// This is the `Service` that will handle the connection.
|
// This is the `Service` that will handle the connection.
|
||||||
// `service_fn_ok` is a helper to convert a function that
|
// `service_fn_ok` is a helper to convert a function that
|
||||||
// returns a Response into a `Service`.
|
// returns a Response into a `Service`.
|
||||||
service_fn_ok(|_| {
|
service_fn_ok(|_| Response::new(Body::from(PHRASE)))
|
||||||
Response::new(Body::from(PHRASE))
|
|
||||||
})
|
|
||||||
};
|
};
|
||||||
|
|
||||||
let server = Server::bind(&addr)
|
let server = Server::bind(&addr)
|
||||||
.serve(new_service)
|
.serve(new_service)
|
||||||
.map_err(|e| eprintln!("server error: {}", e));
|
.map_err(|e| eprintln!("server error: {}", e));
|
||||||
|
|
||||||
println!("Listening on http://{}", addr);
|
println!("Listening on http://{}", addr);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue