File tree Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Expand file tree Collapse file tree 3 files changed +9
-12
lines changed Original file line number Diff line number Diff line change 11# Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
2- import (" //v8/gni/v8.gni" )
32
4- v8_static_library (" rusty_v8" ) {
3+ static_library (" rusty_v8" ) {
4+ complete_static_lib = true
55 sources = [ " src/binding.cc" ]
66 deps = [
7- " :v8" ,
87 " //build/config:shared_library_deps" ,
9- ]
10- configs = [ " :rusty_v8_config" ]
11- }
12-
13- v8_source_set (" v8" ) {
14- deps = [
158 " //v8:v8" ,
169 " //v8:v8_libbase" ,
1710 " //v8:v8_libplatform" ,
1811 " //v8:v8_libsampler" ,
1912 ]
20- configs = [ " :rusty_v8_config" ]
13+ configs -= [
14+ " //build/config/compiler:default_init_stack_vars" ,
15+ " //build/config/compiler:thin_archive" ,
16+ ]
17+ configs += [ " :rusty_v8_config" ]
2118}
2219
2320config (" rusty_v8_config" ) {
Original file line number Diff line number Diff line change @@ -149,7 +149,7 @@ fn download_ninja_gn_binaries() {
149149 . parent ( )
150150 . unwrap ( ) ;
151151 let bin_dir = target_dir
152- . join ( "ninja_gn_binaries-20200806 " )
152+ . join ( "ninja_gn_binaries-20200827 " )
153153 . join ( platform ( ) ) ;
154154 let gn = bin_dir. join ( "gn" ) ;
155155 let ninja = bin_dir. join ( "ninja" ) ;
Original file line number Diff line number Diff line change 1818 from urllib .error import HTTPError , URLError
1919 from urllib .request import urlopen
2020
21- URL = "https://github.com/denoland/ninja_gn_binaries/archive/20200806 .tar.gz"
21+ URL = "https://github.com/denoland/ninja_gn_binaries/archive/20200827 .tar.gz"
2222DIR = None
2323
2424
You can’t perform that action at this time.
0 commit comments