[go: nahoru, domu]

blob: d73355b568be0eeb0d2bc0a4cd7a9fa7f318ba81 [file] [log] [blame]
# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
use_relative_paths = True
vars = {
'build_url': 'https://chromium.googlesource.com/chromium/src/build.git',
'build_revision': 'bd1c1da6c41c18e311156eefc6810366aceb60a6',
'buildtools_url': 'https://chromium.googlesource.com/chromium/src/buildtools.git',
'buildtools_revision': '3ff4f5027b4b81a6c9c36d64d71444f2709a4896',
'depot_tools_url': 'https://chromium.googlesource.com/chromium/tools/depot_tools.git',
'depot_tools_revision': '2595f13f7e0c2bdff42ac22541282dad09b5ef55',
'inspector_protocol_url': 'https://chromium.googlesource.com/deps/inspector_protocol',
'inspector_protocol_revision': '351a2b717e7cd0e59c3d81505c1a803673667dac',
'llvm_url': 'https://chromium.googlesource.com/external/github.com/llvm/llvm-project/',
'llvm_revision': '7edc7f6edbcb5be439886c271a71df43b3f0a8e3',
'build_symbol_server': False,
'clang_format_url': 'https://chromium.googlesource.com/chromium/llvm-project/cfe/tools/clang-format.git',
'clang_format_revision': '96636aa0e9f047f17447f2d45a094d0b59ed7917',
'clang_url': 'https://chromium.googlesource.com/chromium/src/tools/clang.git',
'clang_revision': '116e3ee70d1877ee7d92e0d8bfdf9420b773cd43',
'cmake_version': 'version:3.16.1',
'protoc_version': 'protobuf_version:v3.11.4',
# GN CIPD package version.
'gn_version': 'git_revision:e002e68a48d1c82648eadde2f6aafa20d08c36f2',
# Chromium build number for unit tests. It should be regularly updated to
# the content of https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/LAST_CHANGE
'chromium_linux': '807349',
# the content of https://commondatastorage.googleapis.com/chromium-browser-snapshots/Win_x64/LAST_CHANGE
'chromium_win': '807340',
# the content of https://commondatastorage.googleapis.com/chromium-browser-snapshots/Mac/LAST_CHANGE
'chromium_mac': '807334',
}
# Only these hosts are allowed for dependencies in this DEPS file.
# If you need to add a new host, contact chrome infrastracture team.
allowed_hosts = [ 'chromium.googlesource.com' ]
deps = {
'buildtools/clang_format/script':
Var('clang_format_url') + '@' + Var('clang_format_revision'),
'buildtools':
Var('buildtools_url') + '@' + Var('buildtools_revision'),
'buildtools/linux64': {
'packages': [
{
'package': 'gn/gn/linux-amd64',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "linux"',
},
'buildtools/mac': {
'packages': [
{
'package': 'gn/gn/mac-amd64',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "mac"',
},
'buildtools/win': {
'packages': [
{
'package': 'gn/gn/windows-amd64',
'version': Var('gn_version'),
}
],
'dep_type': 'cipd',
'condition': 'host_os == "win"',
},
'build':
Var('build_url') + '@' + Var('build_revision'),
'third_party/depot_tools':
Var('depot_tools_url') + '@' + Var('depot_tools_revision'),
'third_party/inspector_protocol':
Var('inspector_protocol_url') + '@' + Var('inspector_protocol_revision'),
'back_end/CXXDWARFSymbols/third_party/llvm': {
'url': Var('llvm_url') + '@' + Var('llvm_revision'),
'condition': 'build_symbol_server'
},
'third_party/clang': {
'url': Var('clang_url') + '@' + Var('clang_revision'),
'condition': 'build_symbol_server'
},
'third_party/cmake': {
'packages': [
{
'package': 'infra/cmake/${{platform}}',
'version': Var('cmake_version')
}
],
'dep_type': 'cipd',
'condition': 'build_symbol_server'
},
'third_party/protoc': {
'packages': [
{
'package': 'infra/tools/protoc/${{platform}}',
'version': Var('protoc_version')
}
],
'dep_type': 'cipd',
'condition': 'build_symbol_server'
}
}
hooks = [
# Pull down Node binaries for WebUI toolchain.
{
'name': 'node_linux64',
'pattern': '.',
'condition': 'host_os == "linux"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--extract',
'--no_auth',
'--bucket', 'chromium-nodejs/12.14.1',
'-s', 'third_party/node/linux/node-linux-x64.tar.gz.sha1',
],
},
{
'name': 'node_mac',
'pattern': '.',
'condition': 'host_os == "mac"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--extract',
'--no_auth',
'--bucket', 'chromium-nodejs/12.14.1',
'-s', 'third_party/node/mac/node-darwin-x64.tar.gz.sha1',
],
},
{
'name': 'node_win',
'pattern': '.',
'condition': 'host_os == "win"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--no_auth',
'--bucket', 'chromium-nodejs/12.14.1',
'-s', 'third_party/node/win/node.exe.sha1',
],
},
{
# Ensure that the DEPS'd "depot_tools" has its self-update capability
# disabled.
'name': 'disable_depot_tools_selfupdate',
'pattern': '.',
'action': [
'python',
'third_party/depot_tools/update_depot_tools_toggle.py',
'--disable',
],
},
# Pull clang-format binaries using checked-in hashes.
{
'name': 'clang_format_win',
'pattern': '.',
'condition': 'host_os == "win"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/win/clang-format.exe.sha1',
],
},
{
'name': 'clang_format_mac',
'pattern': '.',
'condition': 'host_os == "mac"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/mac/clang-format.sha1',
],
},
{
'name': 'clang_format_linux',
'pattern': '.',
'condition': 'host_os == "linux"',
'action': [ 'python',
'third_party/depot_tools/download_from_google_storage.py',
'--no_resume',
'--no_auth',
'--bucket', 'chromium-clang-format',
'-s', 'buildtools/linux64/clang-format.sha1',
],
},
# Pull chromium from common storage
{
'name': 'download_chromium_win',
'pattern': '.',
'condition': 'host_os == "win"',
'action': [ 'python',
'scripts/deps/download_chromium.py',
'https://commondatastorage.googleapis.com/chromium-browser-snapshots/Win_x64/' + Var('chromium_win') + '/chrome-win.zip',
'third_party/chrome',
'chrome-win/chrome.exe',
Var('chromium_win'),
],
},
{
'name': 'download_chromium_mac',
'pattern': '.',
'condition': 'host_os == "mac"',
'action': [ 'python',
'scripts/deps/download_chromium.py',
'https://commondatastorage.googleapis.com/chromium-browser-snapshots/Mac/' + Var('chromium_mac') + '/chrome-mac.zip',
'third_party/chrome',
'chrome-mac/Chromium.app/Contents',
Var('chromium_mac'),
],
},
{
'name': 'download_chromium_linux',
'pattern': '.',
'condition': 'host_os == "linux"',
'action': [ 'python',
'scripts/deps/download_chromium.py',
'https://commondatastorage.googleapis.com/chromium-browser-snapshots/Linux_x64/' + Var('chromium_linux') + '/chrome-linux.zip',
'third_party/chrome',
'chrome-linux/chrome',
Var('chromium_linux'),
],
},
{
# Note: On Win, this should run after win_toolchain, as it may use it.
'name': 'clang',
'pattern': '.',
# clang not supported on aix
'condition': 'host_os != "aix" and build_symbol_server',
'action': ['python', 'third_party/clang/scripts/update.py'],
},
{
'name': 'sysroot_x64',
'pattern': '.',
'condition': 'checkout_linux and checkout_x64',
'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
'--arch=x64'],
},
]