summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2018-08-13 19:55:10 -0400
committerRyan Dahl <ry@tinyclouds.org>2018-08-16 08:40:11 -0400
commit36d82374cf54be5df23e570bd2c6865e223d5d76 (patch)
tree0885b628d43cd452981c278b9c02ee45042442e5 /BUILD.gn
parentd770cc18f80257b520c2cf9cdc5ddea707b38680 (diff)
Implement deno_handle_msg_from_js in Rust
Fixes #419, #414.
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn11
1 files changed, 0 insertions, 11 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 20961b023..ef29899cd 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -156,14 +156,9 @@ v8_source_set("deno_flatbuffer_builder") {
}
v8_source_set("deno_bindings") {
- sources = [
- "src/reply.cc",
- "src/reply.h",
- ]
deps = [
":deno_base",
":deno_flatbuffer_builder",
- ":msg_cpp",
]
configs = [ ":deno_config" ]
}
@@ -178,12 +173,6 @@ executable("snapshot_creator") {
configs += [ ":deno_config" ]
}
-flatbuffer("msg_cpp") {
- sources = [
- "src/msg.fbs",
- ]
-}
-
# Generates type declarations for files that need to be included
# in the runtime bundle
run_node("gen_declarations") {