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

Add :all target

This commit is contained in:
Ryan Dahl 2018-07-12 18:37:06 -04:00
parent f9e0a5dece
commit 691a375eab
2 changed files with 13 additions and 1 deletions

View file

@ -42,7 +42,7 @@ install:
- gn args $BUILD_PATH --list
- ccache -s
# Travis hangs without -j2 argument to ninja.
- ninja -j2 -C $BUILD_PATH test_cc handlers_test deno_cc deno_cc_nosnapshot deno deno_nosnapshot
- ninja -j2 -C $BUILD_PATH :all
script:
- ./tools/lint.py
- $BUILD_PATH/test_cc

View file

@ -4,6 +4,18 @@ import("//build_extra/flatbuffers/flatbuffer.gni")
import("//build_extra/deno.gni")
import("//build_extra/rust/rust.gni")
group("all") {
testonly = true
deps = [
":deno",
":deno_cc",
":deno_cc_nosnapshot",
":deno_nosnapshot",
":handlers_test",
":test_cc",
]
}
config("deno_config") {
include_dirs = [ "third_party/v8" ] # This allows us to v8/src/base/ libraries.
configs = [ "third_party/v8:external_config" ]