diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2019-09-06 20:32:58 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-06 20:32:58 -0400 |
commit | acaff6d05622ec54b37b7f378c2d2b2f723ba8d5 (patch) | |
tree | f92184a43b14c8ff6a15709b6e186f3ae1730697 /core/libdeno/BUILD.gn | |
parent | 595b4daa77771458457e178b6b590a044cd41ad0 (diff) |
Remove tools/build.py (#2865)
Testing regression: ASAN build removed.
Diffstat (limited to 'core/libdeno/BUILD.gn')
-rw-r--r-- | core/libdeno/BUILD.gn | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/core/libdeno/BUILD.gn b/core/libdeno/BUILD.gn index 2623fef2d..6bbda98c5 100644 --- a/core/libdeno/BUILD.gn +++ b/core/libdeno/BUILD.gn @@ -1,6 +1,15 @@ # Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. import("//third_party/v8/gni/v8.gni") +group("default") { + testonly = true + deps = [ + ":libdeno_static_lib", + ":libdeno_test", + ":v8", + ] +} + config("deno_config") { include_dirs = [ "//third_party/v8" ] # This allows us to v8/src/base/ libraries. configs = [ "//third_party/v8:external_config" ] |