summaryrefslogtreecommitdiff
path: root/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'BUILD.gn')
-rw-r--r--BUILD.gn10
1 files changed, 8 insertions, 2 deletions
diff --git a/BUILD.gn b/BUILD.gn
index 33cb4f7bd..9c2fe5c1d 100644
--- a/BUILD.gn
+++ b/BUILD.gn
@@ -24,7 +24,10 @@ config("deno_config") {
rust_executable("deno") {
source_root = "src/main.rs"
- extern = [ "$rust_build:libc" ]
+ extern = [
+ "$rust_build:libc",
+ "$rust_build:log",
+ ]
deps = [
":libdeno",
]
@@ -35,7 +38,10 @@ rust_executable("deno") {
# extra process of building a snapshot and instead load the bundle from disk.
rust_executable("deno_nosnapshot") {
source_root = "src/main.rs"
- extern = [ "$rust_build:libc" ]
+ extern = [
+ "$rust_build:libc",
+ "$rust_build:log",
+ ]
deps = [
":libdeno_nosnapshot",
]