summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-09-27 00:56:39 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-09-28 20:53:33 -0400
commitbcbbee7399d41d813e78abe63126e2a01edb5848 (patch)
tree0c1d044bf8c441cec322d5e792ca915126cc856d /BUILD.gn
parentd653808c9f4a7d09acd5f251ffc510d470d687b0 (diff)
Adds basic File I/O and FD table.
Adds deno.stdin, deno.stdout, deno.stderr, deno.open(), deno.write(), deno.read(), deno.Reader, deno.Writer, deno.copy(). Fixes #721. tests/cat.ts works.
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn4
1 files changed, 4 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index b901b1764..e573b7504 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -54,6 +54,8 @@ main_extern = [
"$rust_build:tempfile",
"$rust_build:rand",
"$rust_build:tokio",
+ "$rust_build:tokio_io",
+ "$rust_build:tokio_fs",
"$rust_build:tokio_executor",
"$rust_build:tokio_threadpool",
"$rust_build:url",
@@ -73,6 +75,8 @@ ts_sources = [
"js/dom_types.ts",
"js/errors.ts",
"js/fetch.ts",
+ "js/files.ts",
+ "js/io.ts",
"js/global-eval.ts",
"js/globals.ts",
"js/libdeno.ts",