deno/cli/build.rs

126 lines
3.2 KiB
Rust
Raw Normal View History

2020-01-02 20:13:47 +00:00
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
use deno_core::include_crate_modules;
use deno_core::CoreIsolate;
2020-01-22 22:58:13 +00:00
use deno_core::StartupData;
use std::collections::HashMap;
use std::env;
use std::path::PathBuf;
#[cfg(target_os = "windows")]
extern crate winapi;
#[cfg(target_os = "windows")]
extern crate winres;
fn main() {
// Don't build V8 if "cargo doc" is being run. This is to support docs.rs.
if env::var_os("RUSTDOCFLAGS").is_some() {
return;
}
// To debug snapshot issues uncomment:
// deno_typescript::trace_serializer();
println!(
"cargo:rustc-env=TS_VERSION={}",
deno_typescript::ts_version()
);
println!(
"cargo:rustc-env=TARGET={}",
std::env::var("TARGET").unwrap()
);
let extern_crate_modules = include_crate_modules![deno_core];
let c = PathBuf::from(env::var_os("CARGO_MANIFEST_DIR").unwrap());
let o = PathBuf::from(env::var_os("OUT_DIR").unwrap());
2020-01-22 22:58:13 +00:00
// Main snapshot
let root_names = vec![c.join("js/main.ts")];
2020-01-22 22:58:13 +00:00
let bundle_path = o.join("CLI_SNAPSHOT.js");
let snapshot_path = o.join("CLI_SNAPSHOT.bin");
let main_module_name = deno_typescript::compile_bundle(
&bundle_path,
root_names,
Some(extern_crate_modules.clone()),
)
.expect("Bundle compilation failed");
2020-01-22 22:58:13 +00:00
assert!(bundle_path.exists());
let mut runtime_isolate = CoreIsolate::new(StartupData::None, true);
2020-01-22 22:58:13 +00:00
deno_typescript::mksnapshot_bundle(
&mut runtime_isolate,
2020-01-22 22:58:13 +00:00
&snapshot_path,
&bundle_path,
&main_module_name,
)
.expect("Failed to create snapshot");
// Compiler snapshot
let root_names = vec![c.join("js/compiler.ts")];
let bundle_path = o.join("COMPILER_SNAPSHOT.js");
let snapshot_path = o.join("COMPILER_SNAPSHOT.bin");
2020-02-25 14:14:27 +00:00
let main_module_name = deno_typescript::compile_bundle(
&bundle_path,
root_names,
Some(extern_crate_modules),
)
.expect("Bundle compilation failed");
assert!(bundle_path.exists());
let mut runtime_isolate = CoreIsolate::new(StartupData::None, true);
2020-02-25 14:14:27 +00:00
2020-01-22 22:58:13 +00:00
let mut custom_libs: HashMap<String, PathBuf> = HashMap::new();
custom_libs.insert(
"lib.deno.window.d.ts".to_string(),
c.join("js/lib.deno.window.d.ts"),
2020-01-22 22:58:13 +00:00
);
custom_libs.insert(
"lib.deno.worker.d.ts".to_string(),
c.join("js/lib.deno.worker.d.ts"),
);
custom_libs.insert(
"lib.deno.shared_globals.d.ts".to_string(),
c.join("js/lib.deno.shared_globals.d.ts"),
);
custom_libs.insert(
"lib.deno.ns.d.ts".to_string(),
c.join("js/lib.deno.ns.d.ts"),
);
custom_libs.insert(
"lib.deno.unstable.d.ts".to_string(),
c.join("js/lib.deno.unstable.d.ts"),
);
2020-02-25 14:14:27 +00:00
runtime_isolate.register_op(
"op_fetch_asset",
deno_typescript::op_fetch_asset(custom_libs),
);
2020-01-22 22:58:13 +00:00
deno_typescript::mksnapshot_bundle_ts(
&mut runtime_isolate,
2020-01-22 22:58:13 +00:00
&snapshot_path,
&bundle_path,
&main_module_name,
)
.expect("Failed to create snapshot");
set_binary_metadata();
}
#[cfg(target_os = "windows")]
fn set_binary_metadata() {
let mut res = winres::WindowsResource::new();
res.set_icon("deno.ico");
res.set_language(winapi::um::winnt::MAKELANGID(
winapi::um::winnt::LANG_ENGLISH,
winapi::um::winnt::SUBLANG_ENGLISH_US,
));
res.compile().unwrap();
}
#[cfg(not(target_os = "windows"))]
fn set_binary_metadata() {}