File tree Expand file tree Collapse file tree 3 files changed +8
-7
lines changed
Expand file tree Collapse file tree 3 files changed +8
-7
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 = [
77 " :v8" ,
88 " //build/config:shared_library_deps" ,
99 ]
10- configs = [ " :rusty_v8_config" ]
10+ configs -= [ " //build/config/compiler:thin_archive" ]
11+ configs += [ " :rusty_v8_config" ]
1112}
1213
13- v8_source_set (" v8" ) {
14+ source_set (" v8" ) {
1415 deps = [
1516 " //v8:v8" ,
1617 " //v8:v8_libbase" ,
1718 " //v8:v8_libplatform" ,
1819 " //v8:v8_libsampler" ,
1920 ]
20- configs = [ " :rusty_v8_config" ]
21+ configs + = [ " :rusty_v8_config" ]
2122}
2223
2324config (" 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