Skip to content

Commit 8b60cde

Browse files
davidbenagl
authored andcommitted
Update tools.
In particular, pull Go 1.11 to get module support. Also we don't need to pull in libfuzzer anymore. Change-Id: I8098f64cef59422d9d43f7eca5bf3ced69eb70c4 Reviewed-on: https://boringssl-review.googlesource.com/31864 Reviewed-by: Adam Langley <[email protected]>
1 parent 689019f commit 8b60cde

File tree

4 files changed

+3
-10
lines changed

4 files changed

+3
-10
lines changed

.gitignore

-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ util/bot/golang
1717
util/bot/gyp
1818
util/bot/libcxx
1919
util/bot/libcxxabi
20-
util/bot/libFuzzer
2120
util/bot/llvm-build
2221
util/bot/nasm-win32.exe
2322
util/bot/perl-win32

util/bot/DEPS

+1-7
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,14 @@ vars = {
1616
'chromium_git': 'https://chromium.googlesource.com',
1717

1818
'checkout_clang': False,
19-
'checkout_fuzzer': False,
2019
'checkout_sde': False,
2120
'checkout_nasm': False,
2221
'checkout_libcxx': False,
2322
}
2423

2524
deps = {
2625
'boringssl/util/bot/android_ndk': {
27-
'url': Var('chromium_git') + '/android_ndk.git' + '@' + '5cd86312e794bdf542a3685c6f10cbb96072990b',
26+
'url': Var('chromium_git') + '/android_ndk.git' + '@' + '4e2cea441bfd43f0863d14f57b1e1844260b9884',
2827
'condition': 'checkout_android',
2928
},
3029

@@ -36,11 +35,6 @@ deps = {
3635
'boringssl/util/bot/gyp':
3736
Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
3837

39-
'boringssl/util/bot/libFuzzer': {
40-
'url': Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + '658ff786a213703ff0df6ba4a288e9a1e218c074',
41-
'condition': 'checkout_fuzzer',
42-
},
43-
4438
# Update the following revisions from
4539
# https://chromium.googlesource.com/chromium/buildtools/+/master/DEPS
4640
'boringssl/util/bot/libcxx': {

util/bot/go/bootstrap.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
EXE_SFX = '.exe' if sys.platform == 'win32' else ''
4646

4747
# Pinned version of Go toolset to download.
48-
TOOLSET_VERSION = 'go1.10.3'
48+
TOOLSET_VERSION = 'go1.11'
4949

5050
# Platform dependent portion of a download URL. See http://golang.org/dl/.
5151
TOOLSET_VARIANTS = {

util/bot/update_clang.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
# CLANG_REVISION and CLANG_SUB_REVISION determine the build of clang
2020
# to use. These should be synced with tools/clang/scripts/update.py in
2121
# Chromium.
22-
CLANG_REVISION = '337439'
22+
CLANG_REVISION = '340925'
2323
CLANG_SUB_REVISION=1
2424

2525
PACKAGE_VERSION = "%s-%s" % (CLANG_REVISION, CLANG_SUB_REVISION)

0 commit comments

Comments
 (0)