diff options
| author | Ryan Dahl <ry@tinyclouds.org> | 2018-10-03 23:58:29 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-10-03 23:58:29 -0400 |
| commit | 0422b224e8a55bf259cdbe955d825229496a0687 (patch) | |
| tree | 1bf47de8ca1a5405a40d2303cff81f72190095bb /BUILD.gn | |
| parent | e5e7f0f038494bfe8aa14e31c8d13d6cf481186a (diff) | |
First pass at support for TCP servers and clients. (#884)
Adds deno.listen(), deno.dial(), deno.Listener and deno.Conn.
Diffstat (limited to 'BUILD.gn')
| -rw-r--r-- | BUILD.gn | 12 |
1 files changed, 7 insertions, 5 deletions
@@ -70,6 +70,7 @@ ts_sources = [ "js/blob.ts", "js/compiler.ts", "js/console.ts", + "js/copy_file.ts", "js/deno.ts", "js/dispatch.ts", "js/dom_types.ts", @@ -77,22 +78,23 @@ ts_sources = [ "js/fetch.ts", "js/fileinfo.ts", "js/files.ts", - "js/io.ts", "js/global-eval.ts", "js/globals.ts", + "js/io.ts", "js/libdeno.ts", "js/main.ts", - "js/mkdir.ts", "js/make_temp_dir.ts", + "js/mkdir.ts", "js/mock_builtin.js", + "js/net.ts", "js/os.ts", "js/platform.ts", "js/plugins.d.ts", - "js/read_file.ts", "js/read_dir.ts", + "js/read_file.ts", + "js/read_link.ts", "js/remove.ts", "js/rename.ts", - "js/read_link.ts", "js/stat.ts", "js/symlink.ts", "js/text_encoding.ts", @@ -103,7 +105,7 @@ ts_sources = [ "js/util.ts", "js/v8_source_maps.ts", "js/write_file.ts", - "js/copy_file.ts", + "js/tsconfig.declarations.json", "tsconfig.json", |
