1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 11:53:59 -05:00

Rename deno_rs to deno.

This commit is contained in:
Ryan Dahl 2018-06-23 09:42:06 +02:00
parent 5aeaad9a6a
commit 4b234df803
3 changed files with 7 additions and 7 deletions

View file

@ -44,9 +44,9 @@ install:
- gn args $BUILD_PATH --list - gn args $BUILD_PATH --list
- ccache -s - ccache -s
# Travis hangs without -j2 argument to ninja. # Travis hangs without -j2 argument to ninja.
- ninja -j2 -C $BUILD_PATH mock_runtime_test deno - ninja -j2 -C $BUILD_PATH mock_runtime_test mock_main
- ninja -j2 -C $BUILD_PATH deno_rs - ninja -j2 -C $BUILD_PATH deno
script: script:
- $BUILD_PATH/mock_runtime_test - $BUILD_PATH/mock_runtime_test
- $BUILD_PATH/deno foo bar - $BUILD_PATH/mock_main foo bar
- $BUILD_PATH/deno_rs meow - $BUILD_PATH/deno meow

View file

@ -8,7 +8,7 @@ config("deno_config") {
configs = [ "v8:external_config" ] configs = [ "v8:external_config" ]
} }
rust_executable("deno_rs") { rust_executable("deno") {
source_root = "main.rs" source_root = "main.rs"
rust_deps = [ ":libc" ] rust_deps = [ ":libc" ]
deps = [ deps = [
@ -24,9 +24,9 @@ rust_library("libc") {
] ]
} }
executable("deno") { executable("mock_main") {
sources = [ sources = [
"main.cc", "mock_main.cc",
] ]
deps = [ deps = [
":libdeno", ":libdeno",