summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn6
1 files changed, 6 insertions, 0 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 163df2607..488a98300 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -76,6 +76,7 @@ executable("mock_runtime_test") {
testonly = true
sources = [
"src/file_util_test.cc",
+ "src/flatbuffer_builder_test.cc",
"src/from_snapshot.cc",
"src/mock_runtime_test.cc",
]
@@ -106,11 +107,16 @@ v8_source_set("deno_bindings") {
"src/deno.h",
"src/file_util.cc",
"src/file_util.h",
+ "src/flatbuffer_builder.cc",
+ "src/flatbuffer_builder.h",
"src/internal.h",
]
deps = [
"third_party/v8:v8_monolith",
]
+ public_deps = [
+ "build_extra/flatbuffers:flatbuffers",
+ ]
configs = [ ":deno_config" ]
}