2019-06-28 18:14:31 +03:00
|
|
|
# This file is used to manage the dependencies of the ANGLE git repo. It is
|
|
|
|
# used by gclient to determine what version of each dependency to check out, and
|
|
|
|
# where.
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
# Avoids the need for a custom root variable.
|
|
|
|
use_relative_paths = True
|
|
|
|
|
2020-07-21 17:08:03 +03:00
|
|
|
gclient_gn_args_file = 'build/config/gclient_args.gni'
|
|
|
|
|
2021-06-15 20:47:47 +03:00
|
|
|
gclient_gn_args = [
|
|
|
|
'generate_location_tags',
|
|
|
|
]
|
|
|
|
|
2015-07-20 17:14:54 +03:00
|
|
|
vars = {
|
2016-12-13 23:18:58 +03:00
|
|
|
'android_git': 'https://android.googlesource.com',
|
2015-07-20 17:14:54 +03:00
|
|
|
'chromium_git': 'https://chromium.googlesource.com',
|
2019-10-10 22:27:27 +03:00
|
|
|
'chrome_internal_git': 'https://chrome-internal.googlesource.com',
|
2019-09-19 19:48:31 +03:00
|
|
|
'swiftshader_git': 'https://swiftshader.googlesource.com',
|
2018-04-13 22:51:24 +03:00
|
|
|
|
2018-06-01 21:18:28 +03:00
|
|
|
# This variable is overrided in Chromium's DEPS file.
|
|
|
|
'build_with_chromium': False,
|
|
|
|
|
2021-06-15 20:47:47 +03:00
|
|
|
# We don't use location metadata in our test isolates.
|
|
|
|
'generate_location_tags': False,
|
|
|
|
|
2019-10-10 22:27:27 +03:00
|
|
|
# Only check out public sources by default. This can be overridden with custom_vars.
|
2019-12-19 00:34:29 +03:00
|
|
|
'checkout_angle_internal': False,
|
2019-06-28 18:14:31 +03:00
|
|
|
|
2021-04-13 20:23:26 +03:00
|
|
|
# Controls if we check out the restricted traces.
|
|
|
|
'checkout_angle_restricted_traces': 'checkout_angle_internal',
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
# Pull in Android native toolchain dependencies for Chrome OS too, so we can
|
|
|
|
# build ARC++ support libraries.
|
|
|
|
'checkout_android_native_support': 'checkout_android or checkout_chromeos',
|
|
|
|
|
2019-10-12 00:49:24 +03:00
|
|
|
# Version of Chromium our Chromium-based DEPS are mirrored from.
|
2021-12-15 10:01:47 +03:00
|
|
|
'chromium_revision': '2dae07eeb163a4b7edf31460cb77cd37bab6c514',
|
2020-08-13 04:12:47 +03:00
|
|
|
# We never want to checkout chromium,
|
|
|
|
# but need a dummy DEPS entry for the autoroller
|
|
|
|
'dummy_checkout_chromium': False,
|
2019-10-12 00:49:24 +03:00
|
|
|
|
2019-10-28 19:54:03 +03:00
|
|
|
# Current revision of VK-GL-CTS (a.k.a dEQP).
|
2021-11-22 19:12:10 +03:00
|
|
|
'vk_gl_cts_revision': 'bfede065f419a93f3ea37dcc0c8fbcd794d3b7f8',
|
2018-06-01 21:18:28 +03:00
|
|
|
|
2019-10-25 16:00:41 +03:00
|
|
|
# Current revision of googletest.
|
|
|
|
# Note: this dep cannot be auto-rolled b/c of nesting.
|
2021-08-05 00:28:53 +03:00
|
|
|
'googletest_revision': '2d924d7a971e9667d76ad09727fb2402b4f8a1e3',
|
2020-08-20 00:33:31 +03:00
|
|
|
|
|
|
|
# Current revision of Chrome's third_party googletest directory. This
|
|
|
|
# repository is mirrored as a separate repository, with separate git hashes
|
|
|
|
# that don't match the external googletest repository or Chrome. Mirrored
|
|
|
|
# patches will have a different git hash associated with them.
|
|
|
|
# To roll, first get the new hash for chromium_googletest_revision from the
|
|
|
|
# mirror of third_party/googletest located here:
|
|
|
|
# https://chromium.googlesource.com/chromium/src/third_party/googletest/
|
|
|
|
# Then get the new hash for googletest_revision from the root Chrome DEPS
|
2021-08-05 00:28:53 +03:00
|
|
|
# file: https://source.chromium.org/chromium/chromium/src/+/main:DEPS
|
|
|
|
'chromium_googletest_revision': '17bbed2084d3127bd7bcd27283f18d7a5861bea8',
|
2019-10-25 16:00:41 +03:00
|
|
|
|
2019-10-26 15:16:12 +03:00
|
|
|
# Current revision of jsoncpp.
|
|
|
|
# Note: this dep cannot be auto-rolled b/c of nesting.
|
|
|
|
'jsoncpp_revision': '645250b6690785be60ab6780ce4b58698d884d11',
|
|
|
|
|
2020-06-25 01:12:17 +03:00
|
|
|
# Current revision of Chrome's third_party jsoncpp directory. This repository
|
|
|
|
# is mirrored as a separate repository, with separate git hashes that
|
|
|
|
# don't match the external JsonCpp repository or Chrome. Mirrored patches
|
|
|
|
# will have a different git hash associated with them.
|
|
|
|
# To roll, first get the new hash for chromium_jsoncpp_revision from the
|
|
|
|
# mirror of third_party/jsoncpp located here:
|
|
|
|
# https://chromium.googlesource.com/chromium/src/third_party/jsoncpp/
|
|
|
|
# Then get the new hash for jsoncpp_revision from the root Chrome DEPS file:
|
2021-09-08 14:59:37 +03:00
|
|
|
# https://source.chromium.org/chromium/chromium/src/+/main:DEPS
|
2020-08-20 00:33:31 +03:00
|
|
|
'chromium_jsoncpp_revision': '30a6ac108e24dabac7c2e0df4d33d55032af4ee7',
|
2020-06-25 01:12:17 +03:00
|
|
|
|
2019-10-26 15:16:12 +03:00
|
|
|
# Current revision of patched-yasm.
|
|
|
|
# Note: this dep cannot be auto-rolled b/c of nesting.
|
|
|
|
'patched_yasm_revision': '720b70524a4424b15fc57e82263568c8ba0496ad',
|
|
|
|
|
2019-10-17 21:36:41 +03:00
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling catapult
|
|
|
|
# and whatever else without interference from each other.
|
2021-12-15 10:01:47 +03:00
|
|
|
'catapult_revision': 'b759738dea9abafcbd0dc69553fd049a86e7b56b',
|
2020-09-13 17:34:54 +03:00
|
|
|
|
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling luci-go
|
|
|
|
# and whatever else without interference from each other.
|
2021-12-10 11:23:20 +03:00
|
|
|
'luci_go': 'git_revision:e897e118887a2e6c50a82212b660cb2a7c58d910',
|
2021-04-17 02:21:15 +03:00
|
|
|
|
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_build-tools_version
|
|
|
|
# and whatever else without interference from each other.
|
2021-07-23 15:57:19 +03:00
|
|
|
'android_sdk_build-tools_version': 'tRoD45SCi7UleQqSV7MrMQO1_e5P8ysphkCcj6z_cCQC',
|
2021-04-17 02:21:15 +03:00
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_emulator_version
|
|
|
|
# and whatever else without interference from each other.
|
2021-07-23 15:57:19 +03:00
|
|
|
'android_sdk_emulator_version': 'gMHhUuoQRKfxr-MBn3fNNXZtkAVXtOwMwT7kfx8jkIgC',
|
2021-04-17 02:21:15 +03:00
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_extras_version
|
|
|
|
# and whatever else without interference from each other.
|
|
|
|
'android_sdk_extras_version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC',
|
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_patcher_version
|
|
|
|
# and whatever else without interference from each other.
|
|
|
|
'android_sdk_patcher_version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C',
|
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_platform-tools_version
|
|
|
|
# and whatever else without interference from each other.
|
2021-09-21 10:58:49 +03:00
|
|
|
'android_sdk_platform-tools_version': 'g7n_-r6yJd_SGRklujGB1wEt8iyr77FZTUJVS9w6O34C',
|
2021-04-17 02:21:15 +03:00
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_platforms_version
|
|
|
|
# and whatever else without interference from each other.
|
2021-07-23 15:57:19 +03:00
|
|
|
'android_sdk_platforms_version': 'lL3IGexKjYlwjO_1Ga-xwxgwbE_w-lmi2Zi1uOlWUIAC',
|
2021-04-17 02:21:15 +03:00
|
|
|
# Three lines of non-changing comments so that
|
|
|
|
# the commit queue can handle CLs rolling android_sdk_sources_version
|
|
|
|
# and whatever else without interference from each other.
|
2021-11-03 17:54:04 +03:00
|
|
|
'android_sdk_sources_version': '_a_BcnANjPYw5mSKlNHa7GFY8yc1kdqj2rmQgac7yUcC',
|
2015-07-20 17:14:54 +03:00
|
|
|
}
|
|
|
|
|
2010-04-06 19:42:22 +04:00
|
|
|
deps = {
|
2012-04-11 20:23:44 +04:00
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'build': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/build.git@60fec11aa8e0c0c7f55e1f36c4937409a6e80b40',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'buildtools': {
|
2021-11-18 18:53:04 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/buildtools.git@075dd7e22837a69189003e4fa84499acf63188cf',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2021-03-02 21:21:52 +03:00
|
|
|
'buildtools/clang_format/script': {
|
2021-12-06 18:11:56 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/llvm/llvm-project/clang/tools/clang-format.git@e435ad79c17b1888b34df88d6a30a094936e3836',
|
2021-03-02 21:21:52 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/linux64': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'gn/gn/linux-amd64',
|
2021-12-14 10:01:41 +03:00
|
|
|
'version': 'git_revision:2e56c317bd8e2bf152cfa2ead6ac5fa476fe28b4',
|
2021-03-02 21:21:52 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'not build_with_chromium and host_os == "linux"',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/mac': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'gn/gn/mac-${{arch}}',
|
2021-12-14 10:01:41 +03:00
|
|
|
'version': 'git_revision:2e56c317bd8e2bf152cfa2ead6ac5fa476fe28b4',
|
2021-03-02 21:21:52 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'not build_with_chromium and host_os == "mac"',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/third_party/libc++/trunk': {
|
2021-07-08 10:00:20 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxx.git@79a2e924d96e2fc1e4b937c42efd08898fa472d7',
|
2021-03-02 21:21:52 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/third_party/libc++abi/trunk': {
|
2021-12-14 10:01:41 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/llvm/llvm-project/libcxxabi.git@603d9d1067d178ee2dbd1ba8028413baa876a771',
|
2021-10-21 18:38:42 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/third_party/libunwind/trunk': {
|
2021-12-10 11:23:20 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/llvm/llvm-project/libunwind.git@d81cd6236cd771e78d7e1a1807404ef3f1d21820',
|
2021-03-02 21:21:52 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'buildtools/win': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'gn/gn/windows-amd64',
|
2021-12-14 10:01:41 +03:00
|
|
|
'version': 'git_revision:2e56c317bd8e2bf152cfa2ead6ac5fa476fe28b4',
|
2021-03-02 21:21:52 +03:00
|
|
|
}
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'not build_with_chromium and host_os == "win"',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'testing': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/testing@f40b636e7164904566c5e1966caf742f9750196e',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2012-05-17 03:37:50 +04:00
|
|
|
|
2020-07-23 21:58:10 +03:00
|
|
|
'third_party/abseil-cpp': {
|
2021-12-13 10:00:15 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/abseil-cpp@58d8190809d163b67434fb7c0d94d98cbac3f1e4',
|
2020-07-23 21:58:10 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/android_build_tools': {
|
2021-09-21 10:58:49 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/android_build_tools@1b1e9a3befe7d6a742ef0c69f13890031279a973',
|
2021-04-17 02:21:15 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_build_tools/aapt2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_build_tools/aapt2',
|
2021-10-28 11:09:13 +03:00
|
|
|
'version': 'GlCdqxHxlg-8YkDGgj5cie-6COsEAZga9jyq-LAYxY4C',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_build_tools/art': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_build_tools/art',
|
|
|
|
'version': '87169fbc701d244c311e6aa8843591a7f1710bc0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_build_tools/bundletool': {
|
|
|
|
'packages': [
|
|
|
|
{
|
2021-08-17 14:11:49 +03:00
|
|
|
'package': 'chromium/third_party/android_build_tools/bundletool',
|
2021-11-04 10:44:23 +03:00
|
|
|
'version': '2ZcLVDxyRwp8FzpeYLtLT0TfSRweZxvwh1-Kx1jZ_FoC',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/android_deps@a74e6cedaec825bf1c8f88e4d39b6c960f6c06c2',
|
2021-04-16 02:48:36 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2020-07-21 17:08:03 +03:00
|
|
|
'third_party/android_ndk': {
|
2021-04-21 17:12:48 +03:00
|
|
|
'url': '{chromium_git}/android_ndk.git@401019bf85744311b26c88ced255cd53401af8b7',
|
2020-07-21 17:08:03 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-05-07 17:31:52 +03:00
|
|
|
'third_party/android_platform': {
|
2021-12-02 03:57:17 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/android_platform@abc362f16dfc1a6cc082298ed54504bef11eb9e7',
|
2021-05-07 17:31:52 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/android_sdk': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/android_sdk@eb60318d64385f8929f961ab5e9760f7921beede',
|
2021-04-17 02:21:15 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_sdk/androidx_browser/src': {
|
|
|
|
'url': '{chromium_git}/external/gob/android/platform/frameworks/support/browser.git@65086eb5e52c16778fa7b4f157156d17b176fcb3',
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_sdk/public': {
|
|
|
|
'packages': [
|
|
|
|
{
|
2021-07-23 15:57:19 +03:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/build-tools/31.0.0',
|
2021-04-17 02:21:15 +03:00
|
|
|
'version': Var('android_sdk_build-tools_version'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/emulator',
|
|
|
|
'version': Var('android_sdk_emulator_version'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/extras',
|
|
|
|
'version': Var('android_sdk_extras_version'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/patcher',
|
|
|
|
'version': Var('android_sdk_patcher_version'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/platform-tools',
|
|
|
|
'version': Var('android_sdk_platform-tools_version'),
|
|
|
|
},
|
|
|
|
{
|
2021-07-23 15:57:19 +03:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/platforms/android-31',
|
2021-04-17 02:21:15 +03:00
|
|
|
'version': Var('android_sdk_platforms_version'),
|
|
|
|
},
|
|
|
|
{
|
2021-11-03 17:54:04 +03:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/sources/android-31',
|
2021-04-17 02:21:15 +03:00
|
|
|
'version': Var('android_sdk_sources_version'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/cmdline-tools',
|
2021-11-18 18:53:04 +03:00
|
|
|
'version': 'Ez2NWws2SJYCF6qw2O-mSCqK6424l3ZdSTpppLyVR_cC',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android_native_support and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_system_sdk': {
|
|
|
|
'packages': [
|
|
|
|
{
|
2021-07-23 15:57:19 +03:00
|
|
|
'package': 'chromium/third_party/android_system_sdk/public',
|
|
|
|
'version': 'oSfDIvHlCa6W0gS79Q5OOfB9E4eBg3uAvi3BEDN21U0C',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/bazel': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/bazel',
|
|
|
|
'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2020-07-21 17:08:03 +03:00
|
|
|
'third_party/catapult': {
|
|
|
|
'url': '{chromium_git}/catapult.git@{catapult_revision}',
|
2020-10-12 00:16:34 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2020-07-21 17:08:03 +03:00
|
|
|
},
|
|
|
|
|
2019-10-28 19:54:03 +03:00
|
|
|
# Cherry is a dEQP/VK-GL-CTS management GUI written in Go. We use it for viewing test results.
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/cherry': {
|
2018-06-01 21:18:28 +03:00
|
|
|
'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2015-10-02 15:57:14 +03:00
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/colorama/src': {
|
|
|
|
'url': '{chromium_git}/external/colorama.git@799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/tools/depot_tools.git@9e5809e98f33a5f9f9d3b69a5bd826ce8a7a5a81',
|
2021-04-11 23:52:15 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2020-08-13 04:12:47 +03:00
|
|
|
# We never want to checkout chromium,
|
|
|
|
# but need a dummy DEPS entry for the autoroller
|
|
|
|
'third_party/dummy_chromium': {
|
|
|
|
'url': '{chromium_git}/chromium/src.git@{chromium_revision}',
|
|
|
|
'condition': 'dummy_checkout_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/fuchsia-sdk': {
|
2019-10-11 02:13:07 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44',
|
2019-04-08 16:40:40 +03:00
|
|
|
'condition': 'checkout_fuchsia and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-10 22:27:27 +03:00
|
|
|
# Closed-source OpenGL ES 1.1 Conformance tests.
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/gles1_conform': {
|
2019-10-10 22:27:27 +03:00
|
|
|
'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
|
2019-12-19 00:34:29 +03:00
|
|
|
'condition': 'checkout_angle_internal',
|
2019-10-10 22:27:27 +03:00
|
|
|
},
|
|
|
|
|
2019-03-05 18:07:41 +03:00
|
|
|
# glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/glmark2/src': {
|
2021-07-14 16:46:25 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/glmark2/glmark2@ca8de51fedb70bace5351c6b002eb952c747e889',
|
2019-03-05 18:07:41 +03:00
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/googletest': {
|
2020-08-20 00:33:31 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/googletest@{chromium_googletest_revision}',
|
2019-02-13 17:15:26 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-21 20:15:59 +03:00
|
|
|
'third_party/ijar': {
|
2021-11-04 10:44:23 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/ijar@1c4422cef728df41b8be91f3045ed911b16814b0',
|
2021-04-21 20:15:59 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-03-05 18:07:41 +03:00
|
|
|
# libjpeg_turbo is used by glmark2.
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/libjpeg_turbo': {
|
2021-11-24 10:53:21 +03:00
|
|
|
'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@02959c3ee17abacfd1339ec22ea93301292ffd56',
|
2019-03-05 18:07:41 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/libpng/src': {
|
2021-09-17 07:46:22 +03:00
|
|
|
'url': '{android_git}/platform/external/libpng@d2ece84bd73af1cd5fae5e7574f79b40e5de4fba',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2015-03-17 18:25:27 +03:00
|
|
|
|
2021-04-09 18:24:07 +03:00
|
|
|
'third_party/jdk': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/jdk',
|
|
|
|
'version': 'JhpgSvTpgVUkoKe56yQmYaR1jXNcY8NqlltA0mKIO4EC',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/jdk/extras': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/jdk/extras',
|
|
|
|
'version': '-7m_pvgICYN60yQI3qmTj_8iKjtnT4NXicT0G_jJPqsC',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/jinja2': {
|
2021-10-07 09:15:01 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/jinja2@ee69aa00ee8536f61db6a451f3858745cf587de6',
|
2021-04-17 02:21:15 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/jsoncpp': {
|
2020-06-25 01:12:17 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/jsoncpp@{chromium_jsoncpp_revision}',
|
2019-01-28 17:55:20 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2018-08-28 18:20:57 +03:00
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/markupsafe': {
|
2021-06-30 10:01:11 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/markupsafe@1b882ef6372b58bfd55a3285f37ed801be9137cd',
|
2021-04-17 02:21:15 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2020-04-27 23:57:46 +03:00
|
|
|
'third_party/nasm': {
|
2021-10-19 10:01:14 +03:00
|
|
|
'url': '{chromium_git}/chromium/deps/nasm.git@9215e8e1d0fe474ffd3e16c1a07a0f97089e6224',
|
2020-04-27 23:57:46 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-28 20:26:00 +03:00
|
|
|
'third_party/OpenCL-ICD-Loader/src': {
|
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/OpenCL-ICD-Loader@9b5e3849b49a1448996c8b96ba086cd774d987db',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/proguard': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/proguard',
|
|
|
|
'version': 'Fd91BJFVlmiO6c46YMTsdy7n2f5Sk2hVVGlzPLvqZPsC',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2020-10-12 00:16:34 +03:00
|
|
|
'third_party/protobuf': {
|
2021-11-23 10:01:14 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/protobuf@5227e7d8309e231f8b7a61edd9d63d5446ca0b0b',
|
2020-10-12 00:16:34 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/Python-Markdown': {
|
2021-11-24 10:53:21 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@6a8f3a278159f387dc0f1f95e122f3fc29f95577',
|
2019-04-08 16:40:40 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/qemu-linux-x64': {
|
2019-01-22 02:09:15 +03:00
|
|
|
'packages': [
|
|
|
|
{
|
2021-11-18 18:53:04 +03:00
|
|
|
'package': 'fuchsia/third_party/qemu/linux-amd64',
|
|
|
|
'version': 'FFZaD9tecL-z0lq2XP_7UqiAaMgRGwXTyvcmkv7XCQcC'
|
2019-01-22 02:09:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/qemu-mac-x64': {
|
2019-01-22 02:09:15 +03:00
|
|
|
'packages': [
|
|
|
|
{
|
2021-11-18 18:53:04 +03:00
|
|
|
'package': 'fuchsia/third_party/qemu/mac-amd64',
|
|
|
|
'version': '79L6B9YhuL7uIg_CxwlQcZqLOixVtS2Cctn7dmVg0q4C'
|
2019-01-22 02:09:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
2019-02-26 01:13:16 +03:00
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/r8': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/r8',
|
2021-11-30 12:58:19 +03:00
|
|
|
'version': 'KOlWWUU4CAY1EqgiZ6iljOP7ycIjceTEFcwWxL14HFoC',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/rapidjson/src': {
|
2019-02-26 01:13:16 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
2021-05-18 19:13:23 +03:00
|
|
|
'third_party/requests/src': {
|
2021-05-19 15:54:51 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/kennethreitz/requests.git@refs/tags/v2.23.0',
|
2021-05-18 19:13:23 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/six': {
|
|
|
|
'url': '{chromium_git}/chromium/src/third_party/six@c96255caa80a7e0e45de07ce9af088a2ce984b68',
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/SwiftShader': {
|
2021-12-14 13:01:31 +03:00
|
|
|
'url': '{swiftshader_git}/SwiftShader@f354daff5a2b882fc182c8377c826aa99b30f989',
|
2019-09-19 19:48:31 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-04-17 02:21:15 +03:00
|
|
|
'third_party/turbine': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/turbine',
|
2021-12-14 10:01:41 +03:00
|
|
|
'version': 'RGxvdzLaS73gQOXCTgq7CWKsqCgrXDPPL0Pcxz6oGbQC',
|
2021-04-17 02:21:15 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2020-07-23 21:58:10 +03:00
|
|
|
'third_party/VK-GL-CTS/src': {
|
|
|
|
'url': '{chromium_git}/external/github.com/KhronosGroup/VK-GL-CTS@{vk_gl_cts_revision}',
|
|
|
|
},
|
|
|
|
|
2020-12-14 20:55:55 +03:00
|
|
|
'third_party/vulkan-deps': {
|
2021-12-15 13:01:53 +03:00
|
|
|
'url': '{chromium_git}/vulkan-deps@a8221eed597007ec8c52726562c1371195c41b08',
|
2020-12-14 20:55:55 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2018-05-24 19:56:17 +03:00
|
|
|
},
|
|
|
|
|
2020-07-23 21:58:10 +03:00
|
|
|
'third_party/vulkan_memory_allocator': {
|
2021-11-12 00:50:18 +03:00
|
|
|
'url': '{chromium_git}/external/github.com/GPUOpen-LibrariesAndSDKs/VulkanMemoryAllocator@5e49f57a6e71a026a54eb42e366de09a4142d24e',
|
2020-07-23 21:58:10 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'third_party/zlib': {
|
2021-12-03 10:02:45 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/third_party/zlib@efd9399ae01364926be2a38946127fdf463480db',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2017-08-29 05:53:24 +03:00
|
|
|
|
2021-04-22 04:08:44 +03:00
|
|
|
'tools/android/errorprone_plugin': {
|
|
|
|
'url': '{chromium_git}/chromium/src/tools/android/errorprone_plugin@e81dcab66095e6eec2cde2f76720b9a82c96d793',
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'tools/clang': {
|
2021-12-14 10:01:41 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/clang.git@dc7eff95e13cd297af9c0a28a2f43bd0c975c54b',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
2019-11-20 17:30:17 +03:00
|
|
|
'tools/clang/dsymutil': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/llvm-build-tools/dsymutil',
|
|
|
|
'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC',
|
|
|
|
}
|
|
|
|
],
|
|
|
|
'condition': 'checkout_mac and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2020-09-13 17:34:54 +03:00
|
|
|
'tools/luci-go': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'infra/tools/luci/isolate/${{platform}}',
|
|
|
|
'version': Var('luci_go'),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'package': 'infra/tools/luci/swarming/${{platform}}',
|
|
|
|
'version': Var('luci_go'),
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'tools/mb': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/mb@f6d660404385f75cae14b66b41908731fa0a14ac',
|
2020-09-13 17:34:54 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'tools/md_browser': {
|
2021-12-02 03:57:17 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/md_browser@b61dc90769e67070c2b0a17392be1359b0af3195',
|
2019-04-08 16:40:40 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2019-01-22 02:09:15 +03:00
|
|
|
},
|
2019-09-05 18:04:39 +03:00
|
|
|
|
2019-10-11 00:46:54 +03:00
|
|
|
'tools/memory': {
|
2021-12-02 03:57:17 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/memory@0639a8c19c66272f5064fcaf4e60ca1d03a84976',
|
2019-09-05 18:04:39 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
2020-09-25 20:31:25 +03:00
|
|
|
|
2021-06-10 18:22:26 +03:00
|
|
|
'tools/perf': {
|
2021-12-15 10:01:47 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/perf@5c8dcc7e681f473f4e61a0bbe375544bc2afe3e6',
|
2021-06-10 18:22:26 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2020-10-12 00:16:34 +03:00
|
|
|
'tools/protoc_wrapper': {
|
2021-08-10 10:13:16 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/protoc_wrapper@c16b0dc8db35e95a04eaef88079237634c7f20c2',
|
2020-10-12 00:16:34 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-05-07 17:31:52 +03:00
|
|
|
'tools/python': {
|
2021-09-30 10:02:00 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/python@d17f53e496b179d7b8c65ab4c921d6fd9328b8e7',
|
2021-05-07 17:31:52 +03:00
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2020-09-25 20:31:25 +03:00
|
|
|
'tools/skia_goldctl/linux': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'skia/tools/goldctl/linux-amd64',
|
2021-12-10 11:23:20 +03:00
|
|
|
'version': '2z57AgaznK-BN6rC-A4ZVj85ldJOjFFCMFQ_LYWeUv4C',
|
2020-09-25 20:31:25 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_linux and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'tools/skia_goldctl/win': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'skia/tools/goldctl/windows-amd64',
|
2021-12-10 11:23:20 +03:00
|
|
|
'version': 'SSrgf0lBIrCHRZ2acvLwXzzm4KTPzRg17PGIiqsMxBQC',
|
2020-09-25 20:31:25 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
|
|
|
'tools/skia_goldctl/mac': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'skia/tools/goldctl/mac-amd64',
|
2021-12-10 11:23:20 +03:00
|
|
|
'version': 'zLP4FDegN-yg3uvzWUdf4zNRVHDwHd0VLm86FkZCP_MC',
|
2020-09-25 20:31:25 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_mac and not build_with_chromium',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
|
2021-11-01 22:56:54 +03:00
|
|
|
'tools/valgrind': {
|
2021-11-30 12:58:19 +03:00
|
|
|
'url': '{chromium_git}/chromium/src/tools/valgrind@ff9c7dc63d51297fb1d9877df9a50915c1f6c151',
|
2021-11-01 22:56:54 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
},
|
|
|
|
|
2021-03-30 00:31:52 +03:00
|
|
|
# === ANGLE Restricted Trace Generated Code Start ===
|
|
|
|
'src/tests/restricted_traces/aliexpress': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/aliexpress',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/among_us': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/among_us',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/angry_birds_2_1500': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/angry_birds_2_1500',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/arena_of_valor': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/arena_of_valor',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/asphalt_8': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/asphalt_8',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/avakin_life': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/avakin_life',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/aztec_ruins': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/aztec_ruins',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-10-07 19:27:56 +03:00
|
|
|
'src/tests/restricted_traces/badland': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/badland',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-10-07 19:27:56 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-06-28 18:27:36 +03:00
|
|
|
'src/tests/restricted_traces/beach_buggy_racing': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/beach_buggy_racing',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-28 18:27:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-09-09 16:28:07 +03:00
|
|
|
'src/tests/restricted_traces/blockman_go': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/blockman_go',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-09-09 16:28:07 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/brawl_stars': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/brawl_stars',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-06-28 04:28:28 +03:00
|
|
|
'src/tests/restricted_traces/bricks_breaker_quest': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/bricks_breaker_quest',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-28 04:28:28 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-04-08 19:51:28 +03:00
|
|
|
'src/tests/restricted_traces/bubble_shooter': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/bubble_shooter',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-08 19:51:28 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-04-08 19:51:28 +03:00
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/bus_simulator_indonesia': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/bus_simulator_indonesia',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-08 22:10:29 +03:00
|
|
|
'src/tests/restricted_traces/call_break_offline_card_game': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/call_break_offline_card_game',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-08 22:10:29 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-04-08 22:10:29 +03:00
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/candy_crush_500': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/candy_crush_500',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-26 04:54:32 +03:00
|
|
|
'src/tests/restricted_traces/candy_crush_soda_saga': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/candy_crush_soda_saga',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-26 04:54:32 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/car_parking_multiplayer': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/car_parking_multiplayer',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/clash_of_clans': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/clash_of_clans',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/clash_royale': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/clash_royale',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/cod_mobile': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/cod_mobile',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/coin_master': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/coin_master',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-20 02:53:19 +03:00
|
|
|
'src/tests/restricted_traces/command_and_conquer_rivals': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/command_and_conquer_rivals',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-20 02:53:19 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-06-01 05:48:29 +03:00
|
|
|
'src/tests/restricted_traces/cookie_run_kingdom': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/cookie_run_kingdom',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-01 05:48:29 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-04-08 00:05:14 +03:00
|
|
|
'src/tests/restricted_traces/disney_tsum_tsum': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/disney_tsum_tsum',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-08 00:05:14 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-04-08 00:05:14 +03:00
|
|
|
},
|
2021-05-11 13:00:05 +03:00
|
|
|
'src/tests/restricted_traces/dr_driving': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/dr_driving',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-05-11 13:00:05 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/dragon_ball_legends': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/dragon_ball_legends',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/dragon_raja': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/dragon_raja',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/efootball_pes_2021': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/efootball_pes_2021',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/egypt_1500': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/egypt_1500',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/eight_ball_pool': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/eight_ball_pool',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/extreme_car_driving_simulator': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/extreme_car_driving_simulator',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/fallout_shelter_online': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/fallout_shelter_online',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-06-30 01:40:43 +03:00
|
|
|
'src/tests/restricted_traces/farm_heroes_saga': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/farm_heroes_saga',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-30 01:40:43 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/fate_grand_order': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/fate_grand_order',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/fifa_mobile': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/fifa_mobile',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-05 02:24:18 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/final_fantasy': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/final_fantasy',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/free_fire': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/free_fire',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-23 22:54:18 +03:00
|
|
|
'src/tests/restricted_traces/gardenscapes': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/gardenscapes',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-23 22:54:18 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-05-27 00:07:54 +03:00
|
|
|
'src/tests/restricted_traces/genshin_impact': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/genshin_impact',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:2',
|
2021-05-27 00:07:54 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/google_maps': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/google_maps',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/happy_color': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/happy_color',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/hay_day': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/hay_day',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/hearthstone': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/hearthstone',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-24 02:51:23 +03:00
|
|
|
'src/tests/restricted_traces/higgs_domino_island': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/higgs_domino_island',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-24 02:51:23 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/hill_climb_racing': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/hill_climb_racing',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-04-14 14:45:14 +03:00
|
|
|
},
|
2021-04-23 18:05:34 +03:00
|
|
|
'src/tests/restricted_traces/homescapes': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/homescapes',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-23 18:05:34 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-04-14 14:45:14 +03:00
|
|
|
'src/tests/restricted_traces/idle_heroes': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/idle_heroes',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-14 14:45:14 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/junes_journey': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/junes_journey',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/kartrider_rush': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/kartrider_rush',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/klondike_adventures': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/klondike_adventures',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/league_of_legends_wild_rift': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/league_of_legends_wild_rift',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/lego_legacy': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/lego_legacy',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/lineage_m': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/lineage_m',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-04-22 21:09:31 +03:00
|
|
|
'src/tests/restricted_traces/ludo_king': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/ludo_king',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-22 21:09:31 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/magic_tiles_3': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/magic_tiles_3',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/manhattan_10': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/manhattan_10',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/manhattan_31': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/manhattan_31',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-06-26 01:06:13 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/mario_kart_tour': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/mario_kart_tour',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-26 01:06:13 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/marvel_contest_of_champions': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/marvel_contest_of_champions',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/messenger_lite': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/messenger_lite',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/minecraft': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/minecraft',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-09-30 20:21:21 +03:00
|
|
|
'src/tests/restricted_traces/mini_world': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/mini_world',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-09-30 20:21:21 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/mobile_legends': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/mobile_legends',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/nba2k20_800': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/nba2k20_800',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-09-09 16:29:13 +03:00
|
|
|
'src/tests/restricted_traces/nier_reincarnation': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/nier_reincarnation',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-09-09 16:29:13 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/one_punch_man': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/one_punch_man',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/plants_vs_zombies_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/plants_vs_zombies_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-07 18:30:17 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-04-07 18:30:17 +03:00
|
|
|
},
|
2021-05-14 00:52:14 +03:00
|
|
|
'src/tests/restricted_traces/pokemon_go': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/pokemon_go',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-05-14 00:52:14 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-10-03 06:55:34 +03:00
|
|
|
'src/tests/restricted_traces/pokemon_unite': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/pokemon_unite',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-10-03 06:55:34 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-04-07 18:30:17 +03:00
|
|
|
'src/tests/restricted_traces/professional_baseball_spirits': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/professional_baseball_spirits',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-08-04 18:13:33 +03:00
|
|
|
'src/tests/restricted_traces/pubg_mobile_battle_royale': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/pubg_mobile_battle_royale',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-04 18:13:33 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/pubg_mobile_lite': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/pubg_mobile_lite',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-08-04 18:02:30 +03:00
|
|
|
'src/tests/restricted_traces/pubg_mobile_skydive': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/pubg_mobile_skydive',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-04 18:02:30 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/ragnarok_m_eternal_love': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/ragnarok_m_eternal_love',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/raid_shadow_legends': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/raid_shadow_legends',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/real_commando_secret_mission': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/real_commando_secret_mission',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/real_cricket_20': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/real_cricket_20',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/real_gangster_crime': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/real_gangster_crime',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/rise_of_kingdoms': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/rise_of_kingdoms',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/romancing_saga': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/romancing_saga',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/rope_hero_vice_town': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/rope_hero_vice_town',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/saint_seiya_awakening': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/saint_seiya_awakening',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-05-18 08:16:59 +03:00
|
|
|
'src/tests/restricted_traces/sakura_school_simulator': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/sakura_school_simulator',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-05-18 08:16:59 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-08-24 05:18:48 +03:00
|
|
|
'src/tests/restricted_traces/scrabble_go': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/scrabble_go',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-24 05:18:48 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/shadow_fight_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/shadow_fight_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-16 03:06:31 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/slingshot_test1': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/slingshot_test1',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-04-17 07:55:00 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/slingshot_test2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/slingshot_test2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/sniper_3d': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/sniper_3d',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-08-11 12:28:29 +03:00
|
|
|
'src/tests/restricted_traces/sonic_the_hedgehog': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/sonic_the_hedgehog',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-11 12:28:29 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/standoff_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/standoff_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-06-01 07:23:08 +03:00
|
|
|
'src/tests/restricted_traces/subway_princess_runner': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/subway_princess_runner',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-01 07:23:08 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/subway_surfers': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/subway_surfers',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-05-11 12:27:17 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/summoners_war': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/summoners_war',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/talking_tom_hero_dash': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/talking_tom_hero_dash',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/temple_run_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/temple_run_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/temple_run_300': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/temple_run_300',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-06-30 06:23:21 +03:00
|
|
|
'src/tests/restricted_traces/toon_blast': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/toon_blast',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-30 06:23:21 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-06-30 02:55:36 +03:00
|
|
|
'src/tests/restricted_traces/township': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/township',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-06-30 02:55:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
'src/tests/restricted_traces/trex_200': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/trex_200',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/whatsapp': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/whatsapp',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-24 20:42:07 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-08-31 07:12:59 +03:00
|
|
|
'src/tests/restricted_traces/words_with_friends_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/words_with_friends_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-31 07:12:59 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-08-24 20:42:07 +03:00
|
|
|
'src/tests/restricted_traces/wordscapes': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/wordscapes',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-08-30 06:05:04 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-11-03 01:01:25 +03:00
|
|
|
'src/tests/restricted_traces/world_cricket_championship_2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/world_cricket_championship_2',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-11-03 01:01:25 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-08-30 06:05:04 +03:00
|
|
|
'src/tests/restricted_traces/world_of_kings': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/world_of_kings',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/world_of_tanks_blitz': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/world_of_tanks_blitz',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/world_war_doh': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/world_war_doh',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
'src/tests/restricted_traces/worms_zone_io': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/worms_zone_io',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
2021-04-13 20:23:26 +03:00
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
2021-03-30 00:31:52 +03:00
|
|
|
},
|
2021-10-20 23:45:02 +03:00
|
|
|
'src/tests/restricted_traces/zillow': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'angle/traces/zillow',
|
2021-12-15 03:14:47 +03:00
|
|
|
'version': 'version:1',
|
2021-10-20 23:45:02 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
'condition': 'checkout_angle_restricted_traces',
|
|
|
|
},
|
2021-03-30 00:31:52 +03:00
|
|
|
# === ANGLE Restricted Trace Generated Code End ===
|
2021-04-16 02:48:36 +03:00
|
|
|
|
|
|
|
# === ANDROID_DEPS Generated Code Start ===
|
2021-04-16 10:36:31 +03:00
|
|
|
# Generated by //third_party/android_deps/fetch_all.py
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps/libs/android_arch_core_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_core_common',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_core_runtime': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_core_runtime',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_common_java8': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common_java8',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_livedata': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_livedata_core': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata_core',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_runtime': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/android_arch_lifecycle_viewmodel': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_viewmodel',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/backport_util_concurrent_backport_util_concurrent',
|
|
|
|
'version': 'version:2@3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/classworlds_classworlds': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/classworlds_classworlds',
|
|
|
|
'version': 'version:2@1.1-alpha-2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_animated_vector_drawable': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_appcompat_v7': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_asynclayoutinflater': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_asynclayoutinflater',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_cardview_v7': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_collections': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_collections',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_coordinatorlayout': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_coordinatorlayout',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_cursoradapter': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_cursoradapter',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_customview': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_customview',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_design': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_design',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_documentfile': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_documentfile',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_drawerlayout': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_drawerlayout',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_interpolator': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_interpolator',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_loader': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_loader',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_localbroadcastmanager': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_localbroadcastmanager',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_multidex': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex',
|
|
|
|
'version': 'version:2@1.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_print': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_print',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_recyclerview_v7': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_slidingpanelayout': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_slidingpanelayout',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_compat': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_core_ui': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_core_utils': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_fragment': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_media_compat': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_v4': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_support_vector_drawable': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_swiperefreshlayout': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_swiperefreshlayout',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_transition': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_transition',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_versionedparcelable': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_versionedparcelable',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_support_viewpager': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_viewpager',
|
|
|
|
'version': 'version:2@28.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_tools_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_common',
|
|
|
|
'version': 'version:2@30.0.0-alpha10.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_tools_desugar_jdk_libs': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_tools_desugar_jdk_libs_configuration': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_desugar_jdk_libs_configuration',
|
|
|
|
'version': 'version:2@1.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_layoutlib_layoutlib_api',
|
|
|
|
'version': 'version:2@30.0.0-alpha10.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_android_tools_sdk_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_sdk_common',
|
|
|
|
'version': 'version:2@30.0.0-alpha10.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine',
|
2021-06-16 06:42:27 +03:00
|
|
|
'version': 'version:2@2.8.8.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms',
|
|
|
|
'version': 'version:2@1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_datatransport_transport_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_datatransport_transport_api',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_auth': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_api_phone',
|
|
|
|
'version': 'version:2@17.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_auth_base': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth_base',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_base': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_base',
|
|
|
|
'version': 'version:2@17.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_basement': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_basement',
|
|
|
|
'version': 'version:2@17.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_cast': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cast_framework',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_clearcut': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_clearcut',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_cloud_messaging': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_cloud_messaging',
|
|
|
|
'version': 'version:2@16.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_fido': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_fido',
|
|
|
|
'version': 'version:2@19.0.0-beta.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_flags': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_flags',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_gcm': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_gcm',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_iid': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_iid',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_instantapps': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_instantapps',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_location': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_location',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_phenotype': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_phenotype',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_places_placereport',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_stats': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_stats',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_tasks': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_tasks',
|
|
|
|
'version': 'version:2@17.2.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_vision': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision',
|
|
|
|
'version': 'version:2@18.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_gms_play_services_vision_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision_common',
|
|
|
|
'version': 'version:2@18.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_android_material_material': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_material_material',
|
2021-12-15 10:01:47 +03:00
|
|
|
'version': 'version:2@1.6.0-alpha01.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-07-01 10:04:02 +03:00
|
|
|
'third_party/android_deps/libs/com_google_android_play_core': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_play_core',
|
|
|
|
'version': 'version:2@1.10.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps/libs/com_google_auto_auto_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_auto_auto_common',
|
2021-09-15 10:00:56 +03:00
|
|
|
'version': 'version:2@1.1.2.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_auto_service_auto_service': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service',
|
|
|
|
'version': 'version:2@1.0-rc6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_auto_service_auto_service_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_auto_service_auto_service_annotations',
|
|
|
|
'version': 'version:2@1.0-rc6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_auto_value_auto_value_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_auto_value_auto_value_annotations',
|
|
|
|
'version': 'version:2@1.7.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_code_findbugs_jformatstring': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jformatstring',
|
|
|
|
'version': 'version:2@3.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_code_findbugs_jsr305': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305',
|
|
|
|
'version': 'version:2@3.0.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_code_gson_gson': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_code_gson_gson',
|
|
|
|
'version': 'version:2@2.8.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_dagger_dagger': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger',
|
|
|
|
'version': 'version:2@2.30.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_dagger_dagger_compiler': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_compiler',
|
|
|
|
'version': 'version:2@2.30.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_dagger_dagger_producers': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_producers',
|
|
|
|
'version': 'version:2@2.30.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_dagger_dagger_spi': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi',
|
|
|
|
'version': 'version:2@2.30.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_error_prone_annotation': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotation',
|
2021-11-15 10:00:30 +03:00
|
|
|
'version': 'version:2@2.10.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_error_prone_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_annotations',
|
2021-11-15 10:00:30 +03:00
|
|
|
'version': 'version:2@2.10.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_error_prone_check_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_check_api',
|
2021-11-15 10:00:30 +03:00
|
|
|
'version': 'version:2@2.10.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_error_prone_core': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_core',
|
2021-11-15 10:00:30 +03:00
|
|
|
'version': 'version:2@2.10.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_error_prone_type_annotations',
|
2021-11-15 10:00:30 +03:00
|
|
|
'version': 'version:2@2.10.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_javac': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac',
|
|
|
|
'version': 'version:2@9+181-r4173-1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_errorprone_javac_shaded': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac_shaded',
|
|
|
|
'version': 'version:2@9-dev-r4023-3.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_annotations',
|
|
|
|
'version': 'version:2@16.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_common',
|
|
|
|
'version': 'version:2@19.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_components': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_components',
|
|
|
|
'version': 'version:2@16.1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_encoders': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_encoders',
|
|
|
|
'version': 'version:2@16.1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_encoders_json': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_encoders_json',
|
|
|
|
'version': 'version:2@17.1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_iid': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_iid',
|
|
|
|
'version': 'version:2@21.0.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_iid_interop': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_iid_interop',
|
|
|
|
'version': 'version:2@17.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_installations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_installations',
|
|
|
|
'version': 'version:2@16.3.5.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_installations_interop': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_installations_interop',
|
|
|
|
'version': 'version:2@16.0.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_measurement_connector': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_measurement_connector',
|
|
|
|
'version': 'version:2@18.0.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_firebase_firebase_messaging': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_firebase_firebase_messaging',
|
|
|
|
'version': 'version:2@21.0.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-11-15 10:00:30 +03:00
|
|
|
'third_party/android_deps/libs/com_google_flatbuffers_flatbuffers_java': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_flatbuffers_flatbuffers_java',
|
|
|
|
'version': 'version:2@2.0.3.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps/libs/com_google_googlejavaformat_google_java_format': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_googlejavaformat_google_java_format',
|
|
|
|
'version': 'version:2@1.5.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_guava_failureaccess': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_failureaccess',
|
|
|
|
'version': 'version:2@1.0.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_guava_guava': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava',
|
2021-10-01 10:01:42 +03:00
|
|
|
'version': 'version:2@31.0-jre.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_guava_guava_android': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava_android',
|
2021-09-30 10:02:00 +03:00
|
|
|
'version': 'version:2@31.0-android.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_guava_listenablefuture': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_listenablefuture',
|
|
|
|
'version': 'version:2@1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_j2objc_j2objc_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_j2objc_j2objc_annotations',
|
|
|
|
'version': 'version:2@1.3.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_protobuf_protobuf_java': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_java',
|
|
|
|
'version': 'version:2@3.4.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_google_protobuf_protobuf_javalite': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_javalite',
|
|
|
|
'version': 'version:2@3.13.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_googlecode_java_diff_utils_diffutils',
|
|
|
|
'version': 'version:2@1.3.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_squareup_javapoet': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet',
|
|
|
|
'version': 'version:2@1.13.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/com_squareup_javawriter': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_squareup_javawriter',
|
|
|
|
'version': 'version:2@2.1.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-06-16 06:42:27 +03:00
|
|
|
'third_party/android_deps/libs/io_github_java_diff_utils_java_diff_utils': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/io_github_java_diff_utils_java_diff_utils',
|
|
|
|
'version': 'version:2@4.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps/libs/javax_annotation_javax_annotation_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/javax_annotation_javax_annotation_api',
|
|
|
|
'version': 'version:2@1.3.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/javax_annotation_jsr250_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api',
|
|
|
|
'version': 'version:2@1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/javax_inject_javax_inject': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject',
|
|
|
|
'version': 'version:2@1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/nekohtml_nekohtml': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/nekohtml_nekohtml',
|
|
|
|
'version': 'version:2@1.9.6.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/nekohtml_xercesminimal': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/nekohtml_xercesminimal',
|
|
|
|
'version': 'version:2@1.9.6.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/net_ltgt_gradle_incap_incap': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/net_ltgt_gradle_incap_incap',
|
|
|
|
'version': 'version:2@0.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/net_sf_kxml_kxml2': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2',
|
|
|
|
'version': 'version:2@2.3.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_ant_ant': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_ant_ant',
|
|
|
|
'version': 'version:2@1.8.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_ant_ant_launcher': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_ant_ant_launcher',
|
|
|
|
'version': 'version:2@1.8.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_ant_tasks': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_ant_tasks',
|
|
|
|
'version': 'version:2@2.1.3.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_artifact': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_artifact',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_artifact_manager': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_artifact_manager',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_error_diagnostics': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_error_diagnostics',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_model': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_model',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_plugin_registry': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_plugin_registry',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_profile': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_profile',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_project': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_project',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_repository_metadata': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_repository_metadata',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_maven_settings': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_maven_settings',
|
|
|
|
'version': 'version:2@2.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_wagon_wagon_file': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_file',
|
|
|
|
'version': 'version:2@1.0-beta-6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_lightweight': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_lightweight',
|
|
|
|
'version': 'version:2@1.0-beta-6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_shared': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_http_shared',
|
|
|
|
'version': 'version:2@1.0-beta-6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_apache_maven_wagon_wagon_provider_api': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_apache_maven_wagon_wagon_provider_api',
|
|
|
|
'version': 'version:2@1.0-beta-6.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ccil_cowan_tagsoup_tagsoup',
|
|
|
|
'version': 'version:2@1.2.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_checkerframework_checker_compat_qual': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_compat_qual',
|
|
|
|
'version': 'version:2@2.5.5.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_checkerframework_checker_qual': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_qual',
|
2021-10-01 10:01:42 +03:00
|
|
|
'version': 'version:2@3.12.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-09-15 10:00:56 +03:00
|
|
|
'third_party/android_deps/libs/org_checkerframework_dataflow_errorprone': {
|
2021-04-16 02:48:36 +03:00
|
|
|
'packages': [
|
|
|
|
{
|
2021-09-15 10:00:56 +03:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_dataflow_errorprone',
|
|
|
|
'version': 'version:2@3.15.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_codehaus_mojo_animal_sniffer_annotations',
|
|
|
|
'version': 'version:2@1.17.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_codehaus_plexus_plexus_container_default': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_container_default',
|
|
|
|
'version': 'version:2@1.0-alpha-9-stable-1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_codehaus_plexus_plexus_interpolation': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_interpolation',
|
|
|
|
'version': 'version:2@1.11.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_codehaus_plexus_plexus_utils': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_codehaus_plexus_plexus_utils',
|
|
|
|
'version': 'version:2@1.5.15.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-06-16 06:42:27 +03:00
|
|
|
'third_party/android_deps/libs/org_eclipse_jgit_org_eclipse_jgit': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_eclipse_jgit_org_eclipse_jgit',
|
|
|
|
'version': 'version:2@4.4.1.201607150455-r.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-16 02:48:36 +03:00
|
|
|
'third_party/android_deps/libs/org_jetbrains_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_annotations',
|
|
|
|
'version': 'version:2@13.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib',
|
2021-11-23 10:01:14 +03:00
|
|
|
'version': 'version:2@1.6.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_common',
|
2021-11-23 10:01:14 +03:00
|
|
|
'version': 'version:2@1.6.0.cr0',
|
2021-04-30 11:20:35 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-06-28 10:01:45 +03:00
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_jdk7': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_jdk7',
|
|
|
|
'version': 'version:2@1.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_jdk8': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib_jdk8',
|
|
|
|
'version': 'version:2@1.5.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
2021-04-30 11:20:35 +03:00
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_android': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_android',
|
2021-06-28 10:01:45 +03:00
|
|
|
'version': 'version:2@1.5.0.cr0',
|
2021-04-30 11:20:35 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_coroutines_core_jvm',
|
2021-06-28 10:01:45 +03:00
|
|
|
'version': 'version:2@1.5.0.cr0',
|
2021-04-16 02:48:36 +03:00
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlinx_kotlinx_metadata_jvm',
|
|
|
|
'version': 'version:2@0.1.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ow2_asm_asm': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm',
|
|
|
|
'version': 'version:2@7.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ow2_asm_asm_analysis': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_analysis',
|
|
|
|
'version': 'version:2@7.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ow2_asm_asm_commons': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_commons',
|
|
|
|
'version': 'version:2@7.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ow2_asm_asm_tree': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_tree',
|
|
|
|
'version': 'version:2@7.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_ow2_asm_asm_util': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm_util',
|
|
|
|
'version': 'version:2@7.0.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_pcollections_pcollections': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_pcollections_pcollections',
|
|
|
|
'version': 'version:2@2.1.2.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_annotations': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_annotations',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_junit': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_junit',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_pluginapi': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_pluginapi',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_plugins_maven_dependency_resolver': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_plugins_maven_dependency_resolver',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_resources': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_resources',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_robolectric': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_robolectric',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_sandbox': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_sandbox',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_shadowapi': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadowapi',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_shadows_framework': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadows_framework',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_shadows_playservices': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_shadows_playservices',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_utils': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_utils',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
'third_party/android_deps/libs/org_robolectric_utils_reflector': {
|
|
|
|
'packages': [
|
|
|
|
{
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_robolectric_utils_reflector',
|
|
|
|
'version': 'version:2@4.3.1.cr0',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
'condition': 'checkout_android and not build_with_chromium',
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
},
|
|
|
|
|
|
|
|
# === ANDROID_DEPS Generated Code End ===
|
2010-04-06 19:42:22 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
hooks = [
|
2021-04-11 23:52:15 +03:00
|
|
|
{
|
|
|
|
# Ensure that the DEPS'd "depot_tools" has its self-update capability
|
|
|
|
# disabled.
|
|
|
|
'name': 'disable_depot_tools_selfupdate',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'not build_with_chromium',
|
|
|
|
'action': [
|
2021-10-27 11:56:50 +03:00
|
|
|
'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/update_depot_tools_toggle.py',
|
|
|
|
'--disable',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2015-07-20 17:14:54 +03:00
|
|
|
# Pull clang-format binaries using checked-in hashes.
|
|
|
|
{
|
|
|
|
'name': 'clang_format_win',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "win" and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2015-07-20 17:14:54 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=win32',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'buildtools/win/clang-format.exe.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'clang_format_mac',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "mac" and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2015-07-20 17:14:54 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=darwin',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'buildtools/mac/clang-format.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'clang_format_linux',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'host_os == "linux" and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2015-07-20 17:14:54 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=linux*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-clang-format',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'buildtools/linux64/clang-format.sha1',
|
2015-07-20 17:14:54 +03:00
|
|
|
],
|
|
|
|
},
|
2018-05-22 01:22:22 +03:00
|
|
|
{
|
|
|
|
'name': 'sysroot_x86',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
|
2018-05-22 01:22:22 +03:00
|
|
|
'--arch=x86'],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'sysroot_x64',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': ['python3', 'build/linux/sysroot_scripts/install-sysroot.py',
|
2018-05-22 01:22:22 +03:00
|
|
|
'--arch=x64'],
|
|
|
|
},
|
2021-04-11 23:52:15 +03:00
|
|
|
{
|
|
|
|
# Case-insensitivity for the Win SDK. Must run before win_toolchain below.
|
|
|
|
'name': 'ciopfs_linux',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and host_os == "linux" and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
'--no_resume',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-browser-clang/ciopfs',
|
|
|
|
'-s', 'build/ciopfs.sha1',
|
|
|
|
]
|
|
|
|
},
|
2018-04-13 22:51:24 +03:00
|
|
|
{
|
|
|
|
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
|
|
|
'name': 'win_toolchain',
|
|
|
|
'pattern': '.',
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': ['python3', 'build/vs_toolchain.py', 'update', '--force'],
|
2018-04-13 22:51:24 +03:00
|
|
|
},
|
2019-04-01 23:35:53 +03:00
|
|
|
{
|
|
|
|
# Update the Mac toolchain if necessary.
|
|
|
|
'name': 'mac_toolchain',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_mac and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': ['python3', 'build/mac_toolchain.py'],
|
2019-04-01 23:35:53 +03:00
|
|
|
},
|
2018-04-13 22:51:24 +03:00
|
|
|
|
2017-08-29 05:53:24 +03:00
|
|
|
{
|
|
|
|
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
|
|
'name': 'clang',
|
|
|
|
'pattern': '.',
|
2021-10-27 04:42:11 +03:00
|
|
|
'action': ['python3', 'tools/clang/scripts/update.py'],
|
2018-06-01 21:18:28 +03:00
|
|
|
'condition': 'not build_with_chromium',
|
2017-08-29 05:53:24 +03:00
|
|
|
},
|
2017-10-24 06:25:17 +03:00
|
|
|
|
2018-10-05 18:00:50 +03:00
|
|
|
{
|
|
|
|
# Update LASTCHANGE.
|
|
|
|
'name': 'lastchange',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': ['python3', 'build/util/lastchange.py',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-o', 'build/util/LASTCHANGE'],
|
2018-10-05 18:00:50 +03:00
|
|
|
},
|
|
|
|
|
2017-10-24 06:25:17 +03:00
|
|
|
# Pull rc binaries using checked-in hashes.
|
|
|
|
{
|
|
|
|
'name': 'rc_win',
|
|
|
|
'pattern': '.',
|
2021-07-14 16:42:32 +03:00
|
|
|
'condition': 'checkout_win and host_os == "win" and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2017-10-24 06:25:17 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
|
2017-10-24 06:25:17 +03:00
|
|
|
],
|
|
|
|
},
|
2019-01-22 02:09:15 +03:00
|
|
|
|
2021-07-14 16:42:32 +03:00
|
|
|
{
|
|
|
|
'name': 'rc_mac',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and host_os == "mac" and not build_with_chromium',
|
|
|
|
'action': [ 'python3',
|
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
'--no_resume',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
|
|
'-s', 'build/toolchain/win/rc/mac/rc.sha1',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
'name': 'rc_linux',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and host_os == "linux" and not build_with_chromium',
|
|
|
|
'action': [ 'python3',
|
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
'--no_resume',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
|
|
'-s', 'build/toolchain/win/rc/linux64/rc.sha1',
|
|
|
|
]
|
|
|
|
},
|
|
|
|
|
2019-01-22 02:09:15 +03:00
|
|
|
{
|
|
|
|
'name': 'fuchsia_sdk',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_fuchsia and not build_with_chromium',
|
|
|
|
'action': [
|
2021-10-27 11:56:50 +03:00
|
|
|
'python3',
|
2019-10-11 00:46:54 +03:00
|
|
|
'build/fuchsia/update_sdk.py',
|
2019-01-22 02:09:15 +03:00
|
|
|
],
|
|
|
|
},
|
2019-04-08 16:25:23 +03:00
|
|
|
|
2019-04-05 22:56:03 +03:00
|
|
|
# Download glslang validator binary for Linux.
|
|
|
|
{
|
|
|
|
'name': 'linux_glslang_validator',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_linux and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2019-04-05 22:56:03 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=linux*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-glslang-validator',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'tools/glslang/glslang_validator.sha1',
|
2019-04-05 22:56:03 +03:00
|
|
|
],
|
|
|
|
},
|
|
|
|
|
2019-04-08 16:25:23 +03:00
|
|
|
# Download glslang validator binary for Windows.
|
|
|
|
{
|
|
|
|
'name': 'win_glslang_validator',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2019-04-08 16:25:23 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=win32*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-glslang-validator',
|
2019-10-11 00:46:54 +03:00
|
|
|
'-s', 'tools/glslang/glslang_validator.exe.sha1',
|
2019-04-08 16:25:23 +03:00
|
|
|
],
|
|
|
|
},
|
2019-11-26 00:14:55 +03:00
|
|
|
|
|
|
|
# Download flex/bison binaries for Linux.
|
|
|
|
{
|
|
|
|
'name': 'linux_flex_bison',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_linux and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2019-11-26 00:14:55 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=linux*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-flex-bison',
|
|
|
|
'-d', 'tools/flex-bison/linux/',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
# Download flex/bison binaries for Windows.
|
|
|
|
{
|
|
|
|
'name': 'win_flex_bison',
|
|
|
|
'pattern': '.',
|
|
|
|
'condition': 'checkout_win and not build_with_chromium',
|
2021-10-27 11:56:50 +03:00
|
|
|
'action': [ 'python3',
|
2021-04-11 23:52:15 +03:00
|
|
|
'third_party/depot_tools/download_from_google_storage.py',
|
2019-11-26 00:14:55 +03:00
|
|
|
'--no_resume',
|
|
|
|
'--platform=win32*',
|
|
|
|
'--no_auth',
|
|
|
|
'--bucket', 'angle-flex-bison',
|
|
|
|
'-d', 'tools/flex-bison/windows/',
|
|
|
|
],
|
|
|
|
},
|
2010-04-06 19:42:22 +04:00
|
|
|
]
|
2016-10-28 21:05:26 +03:00
|
|
|
|
|
|
|
recursedeps = [
|
2019-10-25 16:00:41 +03:00
|
|
|
'third_party/googletest',
|
2019-10-26 15:16:12 +03:00
|
|
|
'third_party/jsoncpp',
|
2020-12-14 20:55:55 +03:00
|
|
|
'third_party/vulkan-deps',
|
2016-10-28 21:05:26 +03:00
|
|
|
]
|