diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2019-05-01 02:08:12 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-01 05:08:11 -0400 |
commit | 7237e9d34a61629d5bedce3b9cc46c8a1344d78a (patch) | |
tree | 6fd3edd47b9504903d73394dd6ff356e0ac79899 /cli/BUILD.gn | |
parent | c36b5dd01c2ff40cde07ed410d19e1c20e6137fc (diff) |
fs: add Deno.utime/Deno.utimeSync (#2241)
Diffstat (limited to 'cli/BUILD.gn')
-rw-r--r-- | cli/BUILD.gn | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/BUILD.gn b/cli/BUILD.gn index dc11f3b0b..bfa3fe427 100644 --- a/cli/BUILD.gn +++ b/cli/BUILD.gn @@ -38,6 +38,7 @@ main_extern = [ "$rust_build:tokio_rustls", "$rust_build:tokio_threadpool", "$rust_build:url", + "$rust_build:utime", ] if (is_win) { main_extern += [ "$rust_build:winapi" ] @@ -105,6 +106,7 @@ ts_sources = [ "../js/url.ts", "../js/url_search_params.ts", "../js/util.ts", + "../js/utime.ts", "../js/window.ts", "../js/workers.ts", "../js/write_file.ts", |