diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-09-27 00:56:39 -0400 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-28 20:53:33 -0400 |
| commit | bcbbee7399d41d813e78abe63126e2a01edb5848 (patch) | |
| tree | 0c1d044bf8c441cec322d5e792ca915126cc856d /BUILD.gn | |
| parent | d653808c9f4a7d09acd5f251ffc510d470d687b0 (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.gn | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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", |
