diff options
author | andy finch <andyfinch7@gmail.com> | 2019-03-08 13:11:05 -0500 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-08 13:11:05 -0500 |
commit | 8c7a12d1b258f0ef5ab27f49c424331d43e8d97f (patch) | |
tree | 8675467a39a239adcedf4c376e4c8a82763cd2af /BUILD.gn | |
parent | aed3e590ba31039eede60e7023b6097df944c46f (diff) |
Add basic Arm64 build to CI (#1887)
Diffstat (limited to 'BUILD.gn')
-rw-r--r-- | BUILD.gn | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -135,6 +135,19 @@ group("deno_deps") { ] } +# Optimized dependencies for cross compiled builds. +# This can be removed once we get snapshots into cross compiled builds. +group("deno_deps_cross") { + testonly = true + deps = [ + ":compiler_bundle", + ":main_bundle", + ":msg_rs", + "libdeno:libdeno_static_lib", + "libdeno:test_cc", + ] +} + # Reads the cargo info from Cargo.toml deno_cargo_info = exec_script("build_extra/rust/get_cargo_info.py", [ rebase_path("Cargo.toml", root_build_dir) ], |