1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-22 07:14:47 -05:00

Rename mock_main to deno_cc

This commit is contained in:
Ryan Dahl 2018-07-04 16:45:56 -04:00
parent 06a28998ea
commit 131e0ce4c7
3 changed files with 4 additions and 4 deletions

View file

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

View file

@ -26,9 +26,9 @@ rust_library("libc") {
]
}
executable("mock_main") {
executable("deno_cc") {
sources = [
"src/mock_main.cc",
"src/main.cc",
]
deps = [
":flatbufferjs",