summaryrefslogtreecommitdiff
path: root/deno_typescript
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2019-09-06 20:32:58 -0400
committerGitHub <noreply@github.com>2019-09-06 20:32:58 -0400
commitacaff6d05622ec54b37b7f378c2d2b2f723ba8d5 (patch)
treef92184a43b14c8ff6a15709b6e186f3ae1730697 /deno_typescript
parent595b4daa77771458457e178b6b590a044cd41ad0 (diff)
Remove tools/build.py (#2865)
Testing regression: ASAN build removed.
Diffstat (limited to 'deno_typescript')
-rw-r--r--deno_typescript/BUILD.gn22
1 files changed, 0 insertions, 22 deletions
diff --git a/deno_typescript/BUILD.gn b/deno_typescript/BUILD.gn
deleted file mode 100644
index 0b868c7bd..000000000
--- a/deno_typescript/BUILD.gn
+++ /dev/null
@@ -1,22 +0,0 @@
-import("//build_extra/rust/rust.gni")
-
-rust_rlib("deno_typescript") {
- source_root = "lib.rs"
- generated_source_dir = "."
- extern = [
- {
- label = "../core:deno"
- crate_name = "deno"
- crate_type = "rlib"
- },
- {
- label = "$rust_build:serde_derive"
- crate_name = "serde_derive"
- crate_type = "proc_macro"
- },
- ]
- extern_rlib = [
- "serde_json",
- "serde",
- ]
-}