diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-01-30 17:21:31 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-30 17:21:31 -0500 |
commit | 00597ffde1ebb05a6c60ea7e09e6578c11f92820 (patch) | |
tree | 849b6b22c07ed38a4b424c363c06435ea2de4fa9 /libdeno/BUILD.gn | |
parent | 7d278a0383ce634f4fa3dd792e9b202582a6fde1 (diff) |
Refactor libdeno ES module interface. (#1624)
Allows for future asynchronous module loading.
Add support for import.meta.url
Fixes #1496
Diffstat (limited to 'libdeno/BUILD.gn')
-rw-r--r-- | libdeno/BUILD.gn | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libdeno/BUILD.gn b/libdeno/BUILD.gn index 4620dba38..6cea30b2a 100644 --- a/libdeno/BUILD.gn +++ b/libdeno/BUILD.gn @@ -52,6 +52,7 @@ v8_source_set("libdeno") { "file_util.cc", "file_util.h", "internal.h", + "modules.cc", ] deps = [ ":v8", @@ -84,6 +85,7 @@ v8_executable("test_cc") { sources = [ "file_util_test.cc", "libdeno_test.cc", + "modules_test.cc", "test.cc", ] deps = [ |