ec55dc15d3
Also remove the -Wtautological-constant-compare logic. I believe Clang has since removed that problematic warning from -Wall and that check was causing problems when we were embedded as a subproject in a project that didn't set CMP0025. (In that case, by the time our build file ran, the compiler had already been detected and the damage done. This unfortunately means the next Clang version check will hit the same issue, but let's deal with that when we get there.) Change-Id: Iea5f262899b74c5b84f707f4cf4ac4b3540c4acb Reviewed-on: https://boringssl-review.googlesource.com/26375 Reviewed-by: Steven Valdez <svaldez@google.com> Commit-Queue: David Benjamin <davidben@google.com> CQ-Verified: CQ bot account: commit-bot@chromium.org <commit-bot@chromium.org>
188 lines
5.6 KiB
Python
188 lines
5.6 KiB
Python
# Copyright (c) 2015, Google Inc.
|
|
#
|
|
# Permission to use, copy, modify, and/or distribute this software for any
|
|
# purpose with or without fee is hereby granted, provided that the above
|
|
# copyright notice and this permission notice appear in all copies.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
# SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
# OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
# CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
vars = {
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
|
|
|
'checkout_clang': False,
|
|
'checkout_fuzzer': False,
|
|
'checkout_sde': False,
|
|
}
|
|
|
|
deps = {
|
|
'boringssl/util/bot/android_ndk': {
|
|
'url': Var('chromium_git') + '/android_ndk.git' + '@' + '635bc380968a76f6948fee65f80a0b28db53ae81',
|
|
'condition': 'checkout_android',
|
|
},
|
|
|
|
'boringssl/util/bot/android_tools': {
|
|
'url': Var('chromium_git') + '/android_tools.git' + '@' + '9a70d48fcdd68cd0e7e968f342bd767ee6323bd1',
|
|
'condition': 'checkout_android',
|
|
},
|
|
|
|
'boringssl/util/bot/gyp':
|
|
Var('chromium_git') + '/external/gyp.git' + '@' + 'd61a9397e668fa9843c4aa7da9e79460fe590bfb',
|
|
|
|
'boringssl/util/bot/libFuzzer': {
|
|
'url': Var('chromium_git') + '/chromium/llvm-project/compiler-rt/lib/fuzzer.git' + '@' + 'ba2c1cd6f87accb32b5dbce297387c56a2e53a2f',
|
|
'condition': 'checkout_fuzzer',
|
|
},
|
|
}
|
|
|
|
recursedeps = [
|
|
# android_tools pulls in the NDK from a separate repository.
|
|
'boringssl/util/bot/android_tools',
|
|
]
|
|
|
|
hooks = [
|
|
{
|
|
'name': 'cmake_linux64',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "linux"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=linux*',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-tools',
|
|
'-s', 'boringssl/util/bot/cmake-linux64.tar.gz.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'cmake_linux64_extract',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "linux"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/extract.py',
|
|
'boringssl/util/bot/cmake-linux64.tar.gz',
|
|
'boringssl/util/bot/cmake-linux64/',
|
|
],
|
|
},
|
|
{
|
|
'name': 'cmake_mac',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "mac"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=darwin',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-tools',
|
|
'-s', 'boringssl/util/bot/cmake-mac.tar.gz.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'cmake_mac_extract',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "mac"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/extract.py',
|
|
'boringssl/util/bot/cmake-mac.tar.gz',
|
|
'boringssl/util/bot/cmake-mac/',
|
|
],
|
|
},
|
|
{
|
|
'name': 'cmake_win32',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-tools',
|
|
'-s', 'boringssl/util/bot/cmake-win32.zip.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'cmake_win32_extract',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/extract.py',
|
|
'boringssl/util/bot/cmake-win32.zip',
|
|
'boringssl/util/bot/cmake-win32/',
|
|
],
|
|
},
|
|
{
|
|
'name': 'perl_win32',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-tools',
|
|
'-s', 'boringssl/util/bot/perl-win32.zip.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'perl_win32_extract',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/extract.py',
|
|
'--no-prefix',
|
|
'boringssl/util/bot/perl-win32.zip',
|
|
'boringssl/util/bot/perl-win32/',
|
|
],
|
|
},
|
|
{
|
|
'name': 'yasm_win32',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--platform=win32',
|
|
'--no_auth',
|
|
'--bucket', 'chromium-tools',
|
|
'-s', 'boringssl/util/bot/yasm-win32.exe.sha1',
|
|
],
|
|
},
|
|
{
|
|
'name': 'win_toolchain',
|
|
'pattern': '.',
|
|
'condition': 'host_os == "win"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/vs_toolchain.py',
|
|
'update',
|
|
],
|
|
},
|
|
{
|
|
'name': 'clang',
|
|
'pattern': '.',
|
|
'condition': 'checkout_clang',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/update_clang.py',
|
|
],
|
|
},
|
|
{
|
|
'name': 'sde_linux64',
|
|
'pattern': '.',
|
|
'condition': 'checkout_sde and host_os == "linux"',
|
|
'action': [ 'download_from_google_storage',
|
|
'--no_resume',
|
|
'--bucket', 'chrome-boringssl-sde',
|
|
'-s', 'boringssl/util/bot/sde-linux64.tar.bz2.sha1'
|
|
],
|
|
},
|
|
{
|
|
'name': 'sde_linux64_extract',
|
|
'pattern': '.',
|
|
'condition': 'checkout_sde and host_os == "linux"',
|
|
'action': [ 'python',
|
|
'boringssl/util/bot/extract.py',
|
|
'boringssl/util/bot/sde-linux64.tar.bz2',
|
|
'boringssl/util/bot/sde-linux64/',
|
|
],
|
|
},
|
|
]
|