2019-03-30 14:45:36 -04:00
|
|
|
// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
|
|
|
|
// Run "cargo build -vv" if you want to see gn output.
|
|
|
|
mod gn {
|
2019-03-30 19:27:00 -04:00
|
|
|
include!("../tools/gn.rs");
|
2019-03-30 14:45:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let build = gn::Build::setup();
|
|
|
|
|
|
|
|
let gn_target = if build.check_only {
|
|
|
|
// When RLS is running "cargo check" to analyze the source code, we're not
|
|
|
|
// trying to build a working executable, rather we're just compiling all
|
|
|
|
// rust code. Therefore, make ninja build only 'msg_generated.rs'.
|
|
|
|
"cli:msg_rs"
|
|
|
|
} else {
|
|
|
|
"cli:deno_deps"
|
|
|
|
};
|
|
|
|
|
|
|
|
build.run(gn_target);
|
|
|
|
}
|