DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
# This file contains dependencies for WebRTC.
|
2014-08-20 12:10:11 +00:00
|
|
|
|
2012-07-31 21:54:13 +00:00
|
|
|
vars = {
|
2017-10-10 13:28:18 +02:00
|
|
|
# By default, we should check out everything needed to run on the main
|
|
|
|
|
# chromium waterfalls. More info at: crbug.com/570091.
|
|
|
|
|
'checkout_configuration': 'default',
|
|
|
|
|
'checkout_instrumented_libraries': 'checkout_linux and checkout_configuration == "default"',
|
2020-02-20 15:59:54 +01:00
|
|
|
'chromium_revision': 'ce459ab383c095eb4a4d1d30b870669e1560aa40',
|
2012-07-31 21:54:13 +00:00
|
|
|
}
|
2019-07-02 11:58:39 +02:00
|
|
|
|
2012-07-31 21:54:13 +00:00
|
|
|
deps = {
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
# TODO(kjellander): Move this to be Android-only once the libevent dependency
|
|
|
|
|
# in base/third_party/libevent is solved.
|
|
|
|
|
'src/base':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/base@1d6cd336dc5465be130b3799e3ae06ea988460cb',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/build':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/build@188f078b2dc5fb5e41d8db415e3662e17f6c4fea',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/buildtools':
|
2020-01-28 14:01:36 -08:00
|
|
|
'https://chromium.googlesource.com/chromium/src/buildtools@afc5b798c72905e85f9991152be878714c579958',
|
2018-01-22 08:50:32 +01:00
|
|
|
# Gradle 4.3-rc4. Used for testing Android Studio project generation for WebRTC.
|
|
|
|
|
'src/examples/androidtests/third_party/gradle': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/github.com/gradle/gradle.git@89af43c4d0506f69980f00dde78c97b2f81437f8',
|
2018-01-22 08:50:32 +01:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/ios': {
|
2020-02-20 15:59:54 +01:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/src/ios@084a00adec13f43904912ef69e3b02409ae1011f',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_ios',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/testing':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/testing@688f493e49cd7753762b7abd37163f0866f4800f',
|
2018-06-27 13:23:17 +02:00
|
|
|
'src/third_party':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/third_party@c6a4254b5ee08c6f79f01aec77152136338864f1',
|
2019-02-08 10:39:45 +01:00
|
|
|
|
2019-03-18 09:24:17 +01:00
|
|
|
'src/buildtools/linux64': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'gn/gn/linux-amd64',
|
2020-01-28 14:01:36 -08:00
|
|
|
'version': 'git_revision:97cc440d84f050f99ff0161f9414bfa2ffa38f65',
|
2019-03-18 09:24:17 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
'condition': 'checkout_linux',
|
|
|
|
|
},
|
|
|
|
|
'src/buildtools/mac': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'gn/gn/mac-amd64',
|
2020-01-28 14:01:36 -08:00
|
|
|
'version': 'git_revision:97cc440d84f050f99ff0161f9414bfa2ffa38f65',
|
2019-03-18 09:24:17 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
'condition': 'checkout_mac',
|
|
|
|
|
},
|
|
|
|
|
'src/buildtools/win': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'gn/gn/windows-amd64',
|
2020-01-28 14:01:36 -08:00
|
|
|
'version': 'git_revision:97cc440d84f050f99ff0161f9414bfa2ffa38f65',
|
2019-03-18 09:24:17 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
'condition': 'checkout_win',
|
|
|
|
|
},
|
|
|
|
|
|
2019-02-08 10:39:45 +01:00
|
|
|
'src/buildtools/clang_format/script':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/chromium/llvm-project/cfe/tools/clang-format.git@96636aa0e9f047f17447f2d45a094d0b59ed7917',
|
2019-02-08 10:39:45 +01:00
|
|
|
'src/buildtools/third_party/libc++/trunk':
|
2019-11-20 06:02:38 -08:00
|
|
|
'https://chromium.googlesource.com/chromium/llvm-project/libcxx.git@78d6a7767ed57b50122a161b91f59f19c9bd0d19',
|
2019-02-08 10:39:45 +01:00
|
|
|
'src/buildtools/third_party/libc++abi/trunk':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/chromium/llvm-project/libcxxabi.git@0d529660e32d77d9111912d73f2c74fc5fa2a858',
|
2019-02-08 10:39:45 +01:00
|
|
|
'src/buildtools/third_party/libunwind/trunk':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/external/llvm.org/libunwind.git@69d9b84cca8354117b9fe9705a4430d789ee599b',
|
2019-02-08 10:39:45 +01:00
|
|
|
|
2019-03-06 07:07:04 +01:00
|
|
|
'src/tools/clang/dsymutil': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/llvm-build-tools/dsymutil',
|
2019-11-07 16:01:59 -08:00
|
|
|
'version': 'M56jPzDv1620Rnm__jTMYS62Zi8rxHVq7yw0qeBFEgkC',
|
2019-03-06 07:07:04 +01:00
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_mac',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-10-29 10:24:37 +01:00
|
|
|
'src/third_party/android_build_tools/aapt2': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-11-01 16:35:16 +01:00
|
|
|
'package': 'chromium/third_party/android_build_tools/aapt2',
|
2020-01-21 20:07:02 -08:00
|
|
|
'version': 'LKH_DI44rZhQ4RkScMFQLGSJ4jZyuPcff0llITnq-i4C',
|
2018-10-29 10:24:37 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_build_tools/bundletool': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_tools_bundletool',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'P0-ZY8wc-hAu5TZYFH7bId8H9Ucy7mNGCg1IPzXuZpEC',
|
2018-10-29 10:24:37 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/boringssl/src':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://boringssl.googlesource.com/boringssl.git@7e43e2e8eecc9114f829e6d75cc3c04d1af57504',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/catapult':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/catapult.git@9508452e18f130c98499cb4c4f1e1efaedee8962',
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/third_party/ced/src': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/github.com/google/compact_enc_det.git@ba412eaaacd3186085babcd901679a48863c7dd5',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/colorama/src':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/external/colorama.git@799604a1041e9b3bc5d2789ecbd7e8db2e18e6b8',
|
2017-07-27 01:40:18 -07:00
|
|
|
'src/third_party/depot_tools':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/tools/depot_tools.git@10e0e6d6c19ac3ca5e1ac5667e7772f65f1f8ff8',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/ffmpeg':
|
2020-01-09 00:01:45 -08:00
|
|
|
'https://chromium.googlesource.com/chromium/third_party/ffmpeg.git@bcc5d9fec0a32ec5a90b831e5d0414639af34e1f',
|
2017-11-14 23:09:08 +01:00
|
|
|
'src/third_party/findbugs': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/deps/findbugs.git@4275d9ac8610db6b1bc9a5e887f97e41b33fac67',
|
2017-11-14 23:09:08 +01:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
2018-04-23 11:17:50 +02:00
|
|
|
'src/third_party/freetype/src':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/third_party/freetype2.git@d09e8315591bb3b8767185d9abd8c3e40b8cc347',
|
2018-04-23 11:17:50 +02:00
|
|
|
'src/third_party/harfbuzz-ng/src':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/external/github.com/harfbuzz/harfbuzz.git@63b8190db884d9ae88a80336067eab539a44b882',
|
2017-10-09 13:14:23 +02:00
|
|
|
# WebRTC-only dependency (not present in Chromium).
|
|
|
|
|
'src/third_party/gtest-parallel':
|
2019-08-26 03:00:57 -07:00
|
|
|
'https://chromium.googlesource.com/external/github.com/google/gtest-parallel@df0b4e476f98516cea7d593e5dbb0fca44f6ee7f',
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/third_party/google-truth': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/google-truth',
|
2019-06-06 12:01:10 -07:00
|
|
|
'version': 'u8oovXxp24lStqX4d54htRovta-75Sy2w7ijg1TL07gC',
|
2018-08-30 11:08:38 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2017-05-03 06:44:36 -07:00
|
|
|
'src/third_party/googletest/src':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/external/github.com/google/googletest.git@10b1902d893ea8cc43c69541d70868f91af3646b',
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/third_party/icu': {
|
2020-02-20 15:59:54 +01:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/deps/icu.git@9f4020916eb1f28f3666f018fdcbe6c9a37f0e08',
|
2017-10-09 13:14:23 +02:00
|
|
|
},
|
|
|
|
|
'src/third_party/jsr-305/src': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/jsr-305.git@642c508235471f7220af6d5df2d3210e3bfc0919',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
2019-10-17 13:51:03 +02:00
|
|
|
'src/third_party/jdk': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/jdk',
|
2019-11-05 12:12:27 +01:00
|
|
|
'version': 'PfRSnxe8Od6WU4zBXomq-zsgcJgWmm3z4gMQNB-r2QcC',
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/jdk/extras',
|
|
|
|
|
'version': 'fkhuOQ3r-zKtWEdKplpo6k0vKkjl-LY_rJTmtzFCQN4C',
|
2019-10-17 13:51:03 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'host_os == "linux" and checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/jsoncpp/source':
|
2019-07-16 03:01:13 -07:00
|
|
|
'https://chromium.googlesource.com/external/github.com/open-source-parsers/jsoncpp.git@645250b6690785be60ab6780ce4b58698d884d11', # from svn 248
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/third_party/junit/src': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/junit.git@64155f8a9babcfcf4263cf4d08253a1556e75481',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
# Used for building libFuzzers (only supports Linux).
|
|
|
|
|
'src/third_party/libFuzzer/src':
|
2019-11-22 14:01:45 -08:00
|
|
|
'https://chromium.googlesource.com/chromium/llvm-project/compiler-rt/lib/fuzzer.git@debe7d2d1982e540fbd6bd78604bf001753f9e74',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/libjpeg_turbo':
|
2019-12-17 15:25:38 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/deps/libjpeg_turbo.git@ce0e57e8e636f5132fe6f0590a4dba91f92fd935',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/libsrtp':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/chromium/deps/libsrtp.git@650611720ecc23e0e6b32b0e3100f8b4df91696c',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/libvpx/source/libvpx':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/webm/libvpx.git@36133b04c0d3f82b16902de2ed57fe58d7c30990',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/libyuv':
|
2019-11-20 06:02:38 -08:00
|
|
|
'https://chromium.googlesource.com/libyuv/libyuv.git@6afd9becdf58822b1da6770598d8597c583ccfad',
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/third_party/lss': {
|
2020-01-24 18:01:45 -08:00
|
|
|
'url': 'https://chromium.googlesource.com/linux-syscall-support.git@f70e2f1641e280e777edfdad7f73a2cfa38139c7',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android or checkout_linux',
|
|
|
|
|
},
|
|
|
|
|
'src/third_party/mockito/src': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/mockito/mockito.git@04a2a289a4222f80ad20717c25144981210d2eac',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
2018-11-08 18:30:39 +01:00
|
|
|
|
|
|
|
|
# Used by boringssl.
|
|
|
|
|
'src/third_party/nasm': {
|
2019-08-08 23:00:56 -07:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/deps/nasm.git@21eb595319746a669a742d210eaa413c728e7fad'
|
2018-11-08 18:30:39 +01:00
|
|
|
},
|
|
|
|
|
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/openh264/src':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/external/github.com/cisco/openh264@6f26bce0b1c4e8ce0e13332f7c0083788def5fdf',
|
2018-06-08 10:43:05 +02:00
|
|
|
'src/third_party/r8': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/r8',
|
2019-11-22 10:02:32 -08:00
|
|
|
'version': '-oXGY8FjY2ZuIBHoGAByn8N6Vn2b0wB2QO8Ct_169XoC',
|
2018-06-08 10:43:05 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-01 15:04:52 +02:00
|
|
|
'src/third_party/proguard': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/proguard',
|
|
|
|
|
'version': '3bd778c422ea5496de2ef25c007a517dbb5ce5ca',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2017-10-09 13:14:23 +02:00
|
|
|
'src/third_party/requests/src': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/external/github.com/kennethreitz/requests.git@f172b30356d821d180fa4ecfa3e71c7274a32de4',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
|
|
|
|
'src/third_party/robolectric/robolectric': {
|
2020-02-20 15:59:54 +01:00
|
|
|
'url': 'https://chromium.googlesource.com/external/robolectric.git@f2df0efb033bb402399ebfb9bf58aefee5cced05',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
|
|
|
|
'src/third_party/ub-uiautomator/lib': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/third_party/ub-uiautomator.git@00270549ce3161ae72ceb24712618ea28b4f9434',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/usrsctp/usrsctplib':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/external/github.com/sctplab/usrsctp@7a8bc9a90ca96634aa56ee712856d97f27d903f8',
|
2017-10-09 13:14:23 +02:00
|
|
|
# Dependency used by libjpeg-turbo.
|
|
|
|
|
'src/third_party/yasm/binaries': {
|
2019-07-02 11:58:39 +02:00
|
|
|
'url': 'https://chromium.googlesource.com/chromium/deps/yasm/binaries.git@52f9b3f4b0aa06da24ef8b123058bb61ee468881',
|
2017-10-09 13:14:23 +02:00
|
|
|
'condition': 'checkout_win',
|
|
|
|
|
},
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/third_party/yasm/source/patched-yasm':
|
2019-07-02 11:58:39 +02:00
|
|
|
'https://chromium.googlesource.com/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
|
DEPS: Sync Git subtree mirrors instead of symlinking into chromium/src
This changes the way we pull in dependencies WebRTC shares with
Chromium. The base, build, tools and third_party directories from
Chromium are now synced as Git subtree mirrors in the DEPS file.
All symlinks to directories that were previously created by the
setup_links.py are replaced with proper DEPS entries.
One downside with this solution is that we get a lot of directories
in tools/ and third_party/ that we currently don't use. Going forward
it might be possible to improve this but as long as the BUILD.gn files
are stored in the Chromium repo rather at each dependency's repo,
this will be very cumbersome.
The DEPS file will be kept auto-rolled by the script in
https://chromium.googlesource.com/external/webrtc/+/master/tools-webrtc/autoroller/roll_deps.py
which is periodically executed by a bot.
This change brings back the Google Play Services download for Android,
which displays a license confirmation dialog to the user at the first sync.
By running it as a proper hook instead of inside sync_chromium.py, the
problems with that the interactive prompt gets hidden/stuck should be
fixed (now the behavior is identical to Chromium).
Some measurements on the size savings for a clean, newly created checkout:
Linux: 15GB -> 6.4GB (-8.6GB)
Linux (with Android): 25 GB -> 16 GB (-9GB). 8.4GB of this is Android SDK+NDK.
Mac (with iOS): 14 GB -> 5.6GB (-8.4GB)
Note that for all of the above, 1GB is occupied by the resources/ dir.
BUG=webrtc:5006, webrtc:5578
NOTRY=True
R=agable@chromium.org, henrika@webrtc.org, iannucci@chromium.org
Review-Url: https://codereview.webrtc.org/1414343008 .
Cr-Commit-Position: refs/heads/master@{#15754}
2016-12-22 10:40:28 +01:00
|
|
|
'src/tools':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/chromium/src/tools@af708e06762e33ce0806f19e6c96e06877e08282',
|
2017-08-30 00:42:43 -07:00
|
|
|
'src/tools/swarming_client':
|
2020-02-20 15:59:54 +01:00
|
|
|
'https://chromium.googlesource.com/infra/luci/client-py.git@0ac28472d073a515124c85b128c4378a914e0a4d',
|
2018-02-19 18:43:17 +01:00
|
|
|
|
|
|
|
|
'src/third_party/accessibility_test_framework': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/accessibility-test-framework',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'b5ec1e56e58e56bc1a0c77d43111c37f9b512c8a',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_support_test_runner': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_support_test_runner',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': '96d4bf848cd210fdcbca6bcc8c1b4b39cbd93141',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/apk-patch-size-estimator': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/apk-patch-size-estimator',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'b603e99dca9b90d6a99519c232cd811878283b08',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/bazel': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/bazel',
|
2019-11-20 06:02:38 -08:00
|
|
|
'version': 'VjMsf48QUWw8n7XtJP2AuSjIGmbQeYdWdwyxVvIRLmAC',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/bouncycastle': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/bouncycastle',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'c078e87552ba26e776566fdaf0f22cd8712743d0',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/byte_buddy': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/byte_buddy',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'c9b53316603fc2d997c899c7ca1707f809b918cd',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-08-19 10:56:46 +02:00
|
|
|
'src/third_party/byte_buddy/android_sdk_build_tools_25_0_2': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/build-tools',
|
|
|
|
|
'version': 'kwIs2vdfTm93yEP8LG5aSnchN4BVEdVxbqQtF4XpPdkC',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-02-19 18:43:17 +01:00
|
|
|
'src/third_party/espresso': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/espresso',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'c92dcfc4e894555a0b3c309f2b7939640eb1fee4',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/guava': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/guava',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'a6fba501f3a0de88b9be1daa2052632de5b96a46',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/hamcrest': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/hamcrest',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': '37eccfc658fe79695d6abb6dd497463c4372032f',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-03-19 12:59:15 +01:00
|
|
|
'src/third_party/android_ndk': {
|
2019-11-22 10:02:32 -08:00
|
|
|
'url': 'https://chromium.googlesource.com/android_ndk.git@27c0a8d090c666a50e40fceb4ee5b40b1a2d3f87',
|
2019-03-20 09:04:46 +01:00
|
|
|
'condition': 'checkout_android',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_sdk/public': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
2019-11-19 14:04:18 +01:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/build-tools/29.0.2',
|
|
|
|
|
'version': 'n-b1Qd7iFb8qzHlr1C_jIeu070UDgO_BwePtH42UqGcC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/emulator',
|
2019-11-19 14:04:18 +01:00
|
|
|
'version': 'f4WdgkPvDdVCE8zBWPzcSIj4N9WFhKp3CSKDWylXuLEC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/extras',
|
2019-07-02 11:58:39 +02:00
|
|
|
'version': 'ppQ4TnqDvBHQ3lXx5KPq97egzF5X2FFyOrVHkGmiTMQC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/patcher',
|
2019-07-02 11:58:39 +02:00
|
|
|
'version': 'I6FNMhrXlpB-E1lOhMlvld7xt9lBVNOO83KIluXDyA0C',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/platform-tools',
|
2019-11-26 04:02:13 -08:00
|
|
|
'version': 'Jxtur3_L9RzY4q79K-AwIahwFW4oi5uYVD5URx9h62wC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
2019-11-19 14:04:18 +01:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/platforms/android-29',
|
|
|
|
|
'version': 'yb33klKQV9UzzB-lDSsq36vzhTXOUZ2aRONBvPGwvdcC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
2019-11-19 14:04:18 +01:00
|
|
|
'package': 'chromium/third_party/android_sdk/public/sources/android-29',
|
|
|
|
|
'version': '4gxhM8E62bvZpQs7Q3d0DinQaW0RLCIefhXrQBFkNy8C',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/tools-lint',
|
2019-07-02 11:58:39 +02:00
|
|
|
'version': '89hXqZYzCum3delB5RV7J_QyWkaRodqdtQS0s3LMh3wC',
|
2019-03-19 12:59:15 +01:00
|
|
|
},
|
2020-01-07 06:56:55 +01:00
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_sdk/public/cmdline-tools',
|
|
|
|
|
'version': 'CR25ixsRhwuRnhdgDpGFyl9S0C_0HO9SUgFrwX46zq8C',
|
|
|
|
|
},
|
2019-03-19 12:59:15 +01:00
|
|
|
],
|
2019-03-20 09:04:46 +01:00
|
|
|
'condition': 'checkout_android',
|
2019-03-19 12:59:15 +01:00
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-02-19 18:43:17 +01:00
|
|
|
'src/third_party/icu4j': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/icu4j',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': 'e87e5bed2b4935913ee26a3ebd0b723ee2344354',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-08-28 14:12:02 +00:00
|
|
|
'src/third_party/objenesis': {
|
2018-02-19 18:43:17 +01:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-08-28 14:12:02 +00:00
|
|
|
'package': 'chromium/third_party/objenesis',
|
2019-12-05 08:03:01 -08:00
|
|
|
'version': 'tknDblENYi8IaJYyD6tUahUyHYZlzJ_Y74_QZSz4DpIC',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/robolectric': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/robolectric',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'iC6RDM5EH3GEAzR-1shW_Mg0FeeNE5shq1okkFfuuNQC',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-02-16 10:07:28 +01:00
|
|
|
'src/third_party/androidx': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/androidx',
|
|
|
|
|
'version': 'BgU0HKOH7unGo87kXkIKJlPMmaSOCFhvUKcIr9aborwC',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-02-19 18:43:17 +01:00
|
|
|
'src/third_party/sqlite4java': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/sqlite4java',
|
2020-01-12 06:00:55 -08:00
|
|
|
'version': 'LofjKH9dgXIAJhRYCPQlMFywSwxYimrfDeBmaHc-Z5EC',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/xstream': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/xstream',
|
2018-11-29 12:01:23 -08:00
|
|
|
'version': '4278b1b78b86ab7a1a29e64d5aec9a47a9aab0fe',
|
2018-02-19 18:43:17 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-07-19 13:55:40 +02:00
|
|
|
|
2018-12-07 15:46:53 +01:00
|
|
|
'src/tools/luci-go': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'infra/tools/luci/isolate/${{platform}}',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'git_revision:02ba678a47594da180904851f3e6f809da7e0fc5',
|
2018-12-07 15:46:53 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'infra/tools/luci/isolated/${{platform}}',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'git_revision:02ba678a47594da180904851f3e6f809da7e0fc5',
|
2018-12-07 15:46:53 +01:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'package': 'infra/tools/luci/swarming/${{platform}}',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'git_revision:02ba678a47594da180904851f3e6f809da7e0fc5',
|
2018-12-07 15:46:53 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
# Everything coming after this is automatically updated by the auto-roller.
|
|
|
|
|
# === ANDROID_DEPS Generated Code Start ===
|
2020-01-06 14:01:43 -08:00
|
|
|
# Generated by //third_party/android_deps/fetch_all.py
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/third_party/android_deps/libs/android_arch_core_common': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_core_common',
|
2019-04-04 01:01:35 -07:00
|
|
|
'version': 'version:1.1.1-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2019-08-15 17:01:27 -07:00
|
|
|
'src/third_party/android_deps/libs/android_arch_core_runtime': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_core_runtime',
|
|
|
|
|
'version': 'version:1.1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/android_arch_lifecycle_common': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_common',
|
2019-04-04 01:01:35 -07:00
|
|
|
'version': 'version:1.1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:1.1.1-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2019-08-15 17:01:27 -07:00
|
|
|
'src/third_party/android_deps/libs/android_arch_lifecycle_livedata': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_livedata',
|
|
|
|
|
'version': 'version:1.1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:1.1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/android_arch_lifecycle_runtime': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_runtime',
|
2019-04-04 01:01:35 -07:00
|
|
|
'version': 'version:1.1.1-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2019-08-15 17:01:27 -07:00
|
|
|
'src/third_party/android_deps/libs/android_arch_lifecycle_viewmodel': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/android_arch_lifecycle_viewmodel',
|
|
|
|
|
'version': 'version:1.1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-02-22 17:01:48 -08:00
|
|
|
'src/third_party/android_deps/libs/androidx_annotation_annotation': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_annotation_annotation',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-09-03 15:01:32 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_appcompat_appcompat': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_appcompat_appcompat',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_arch_core_core_common': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_common',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_arch_core_core_runtime': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_arch_core_core_runtime',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_asynclayoutinflater_asynclayoutinflater',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_cardview_cardview': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_cardview_cardview',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_collection_collection': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_collection_collection',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-12 06:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/androidx_concurrent_concurrent_futures': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_concurrent_concurrent_futures',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-09-03 15:01:32 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_coordinatorlayout_coordinatorlayout',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_core_core': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_core_core',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_cursoradapter_cursoradapter',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_customview_customview': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_customview_customview',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_documentfile_documentfile': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_documentfile_documentfile',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_drawerlayout_drawerlayout',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_fragment_fragment': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_fragment_fragment',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_gridlayout_gridlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_gridlayout_gridlayout',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_interpolator_interpolator': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_interpolator_interpolator',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_leanback_leanback': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_leanback_leanback_preference': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_leanback_leanback_preference',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_preference_v14',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_ui',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_core_utils',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v13': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v13',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_legacy_legacy_support_v4': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_legacy_legacy_support_v4',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-02-22 17:01:48 -08:00
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-09-03 15:01:32 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_common_java8',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_livedata_core',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_runtime',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_lifecycle_lifecycle_viewmodel',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_loader_loader': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_loader_loader',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_localbroadcastmanager_localbroadcastmanager',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_media_media': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_media_media',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_mediarouter_mediarouter': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_mediarouter_mediarouter',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_multidex_multidex': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_multidex_multidex',
|
|
|
|
|
'version': 'version:2.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_palette_palette': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_palette_palette',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_preference_preference': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_preference_preference',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_print_print': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_print_print',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_recyclerview_recyclerview': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_recyclerview_recyclerview',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_slidingpanelayout_slidingpanelayout',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_swiperefreshlayout_swiperefreshlayout',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-02-22 17:01:48 -08:00
|
|
|
'src/third_party/android_deps/libs/androidx_test_core': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_core',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'version:1.2.0-cr0',
|
2019-02-22 17:01:48 -08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_test_ext_junit': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_ext_junit',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'version:1.1.1-cr0',
|
2019-02-22 17:01:48 -08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_test_monitor': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_monitor',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'version:1.2.0-cr0',
|
2019-02-22 17:01:48 -08:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-03-21 04:01:22 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_test_rules': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_rules',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'version:1.2.0-cr0',
|
2019-03-21 04:01:22 -07:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_test_runner': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_runner',
|
2020-02-20 15:59:54 +01:00
|
|
|
'version': 'version:1.2.0-cr0',
|
2019-03-21 04:01:22 -07:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-09-20 19:01:08 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_test_uiautomator_uiautomator',
|
|
|
|
|
'version': 'version:2.2.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-09-03 15:01:32 -07:00
|
|
|
'src/third_party/android_deps/libs/androidx_transition_transition': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_transition_transition',
|
|
|
|
|
'version': 'version:1.0.0-rc02-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_vectordrawable_vectordrawable_animated',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_versionedparcelable_versionedparcelable',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/androidx_viewpager_viewpager': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/androidx_viewpager_viewpager',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_animated_vector_drawable': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_animated_vector_drawable',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_appcompat_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_appcompat_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_asynclayoutinflater': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_asynclayoutinflater',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_cardview_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_cardview_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_collections': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_collections',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_coordinatorlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_coordinatorlayout',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_cursoradapter': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_cursoradapter',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_customview': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_customview',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_design': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_design',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_documentfile': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_documentfile',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_drawerlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_drawerlayout',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_gridlayout_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_gridlayout_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_interpolator': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_interpolator',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_leanback_v17': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_leanback_v17',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_loader': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_loader',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_localbroadcastmanager': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_localbroadcastmanager',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_mediarouter_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_mediarouter_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_multidex': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_multidex',
|
|
|
|
|
'version': 'version:1.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_palette_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_palette_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_preference_leanback_v17': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_leanback_v17',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_preference_v14': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v14',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_preference_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_preference_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_print': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_print',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_recyclerview_v7': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_recyclerview_v7',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_slidingpanelayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_slidingpanelayout',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_annotations': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_annotations',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_compat': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_compat',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_core_ui': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_ui',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_core_utils': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_core_utils',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_fragment': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_fragment',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_media_compat': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_media_compat',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_v13': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v13',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_v4': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_v4',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_support_vector_drawable': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_support_vector_drawable',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_swiperefreshlayout': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_swiperefreshlayout',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 11:50:40 +02:00
|
|
|
'src/third_party/android_deps/libs/com_android_support_transition': {
|
2018-07-19 13:55:40 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-07-27 11:50:40 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_transition',
|
2019-08-15 17:01:27 -07:00
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_versionedparcelable': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_versionedparcelable',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_support_viewpager': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_support_viewpager',
|
|
|
|
|
'version': 'version:28.0.0-cr0',
|
2018-07-19 13:55:40 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
2018-07-27 13:53:36 +02:00
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2020-01-22 16:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_core',
|
|
|
|
|
'version': 'version:1.0.0-beta08-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_android_tools_build_jetifier_jetifier_processor',
|
|
|
|
|
'version': 'version:1.0.0-beta08-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-24 18:01:45 -08:00
|
|
|
'src/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine': {
|
2019-11-20 12:10:08 +01:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2020-01-24 18:01:45 -08:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_github_ben_manes_caffeine_caffeine',
|
|
|
|
|
'version': 'version:2.7.0-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-24 18:01:45 -08:00
|
|
|
'src/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms': {
|
2019-11-20 12:10:08 +01:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2020-01-24 18:01:45 -08:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_github_kevinstern_software_and_algorithms',
|
|
|
|
|
'version': 'version:1.0-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/third_party/android_deps/libs/com_google_android_gms_play_services_auth': {
|
2018-08-28 09:58:37 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-08-30 11:08:38 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_auth',
|
|
|
|
|
'version': 'version:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
2018-08-28 09:58:37 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 13:53:36 +02:00
|
|
|
'src/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',
|
2018-08-20 10:45:52 -07:00
|
|
|
'version': 'version:15.0.1-cr0',
|
2018-07-27 13:53:36 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 13:53:36 +02:00
|
|
|
'src/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',
|
2018-08-20 10:45:52 -07:00
|
|
|
'version': 'version:15.0.1-cr0',
|
2018-07-27 13:53:36 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 13:53:36 +02:00
|
|
|
'src/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',
|
2018-08-20 10:45:52 -07:00
|
|
|
'version': 'version:15.0.1-cr0',
|
2018-07-27 13:53:36 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:16.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:16.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:16.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-07-27 13:53:36 +02:00
|
|
|
'src/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',
|
2018-08-20 10:45:52 -07:00
|
|
|
'version': 'version:15.0.1-cr0',
|
2018-07-27 13:53:36 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
2018-07-19 13:55:40 +02:00
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/third_party/android_deps/libs/com_google_android_gms_play_services_vision': {
|
2018-08-28 09:58:37 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-08-30 11:08:38 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_gms_play_services_vision',
|
|
|
|
|
'version': 'version:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2018-08-30 11:08:38 +02:00
|
|
|
'src/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:15.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-09-03 10:06:10 +02:00
|
|
|
|
2019-09-03 15:01:32 -07:00
|
|
|
'src/third_party/android_deps/libs/com_google_android_material_material': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_android_material_material',
|
|
|
|
|
'version': 'version:1.0.0-rc02-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/third_party/android_deps/libs/com_google_auto_auto_common': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_auto_auto_common',
|
|
|
|
|
'version': 'version:0.10-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:1.0-rc6-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:1.0-rc6-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:3.0.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/third_party/android_deps/libs/com_google_code_findbugs_jsr305': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_code_findbugs_jsr305',
|
2019-11-20 12:10:08 +01:00
|
|
|
'version': 'version:3.0.2-cr0',
|
2018-09-19 19:20:19 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-02-20 15:59:54 +01:00
|
|
|
'src/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.8.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-03 10:06:10 +02:00
|
|
|
'src/third_party/android_deps/libs/com_google_dagger_dagger': {
|
2018-08-30 14:08:53 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
2018-09-03 10:06:10 +02:00
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger',
|
2018-08-30 14:08:53 +02:00
|
|
|
'version': 'version:2.17-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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.17-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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.17-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_google_dagger_dagger_spi': {
|
2018-09-19 19:20:19 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_dagger_dagger_spi',
|
|
|
|
|
'version': 'version:2.17-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/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',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:2.3.4-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/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',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:2.3.4-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:2.3.4-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:2.3.4-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:2.3.4-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/com_google_errorprone_javac': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_errorprone_javac',
|
|
|
|
|
'version': 'version:9+181-r4173-1-cr0',
|
2018-09-19 19:20:19 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2018-08-30 14:08:53 +02:00
|
|
|
|
|
|
|
|
'src/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:9-dev-r4023-3-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:1.5-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/third_party/android_deps/libs/com_google_guava_failureaccess': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_failureaccess',
|
|
|
|
|
'version': 'version:1.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-08-30 14:08:53 +02:00
|
|
|
'src/third_party/android_deps/libs/com_google_guava_guava': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_guava',
|
2019-11-20 12:10:08 +01:00
|
|
|
'version': 'version:27.0.1-jre-cr0',
|
2018-08-30 14:08:53 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-12 06:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/com_google_guava_listenablefuture': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_guava_listenablefuture',
|
|
|
|
|
'version': 'version:1.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/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:1.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-25 12:01:41 -08:00
|
|
|
'src/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:3.4.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-11-20 18:01:13 -08:00
|
|
|
'src/third_party/android_deps/libs/com_google_protobuf_protobuf_lite': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_google_protobuf_protobuf_lite',
|
|
|
|
|
'version': 'version:3.0.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/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:1.3.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-08-30 14:08:53 +02:00
|
|
|
'src/third_party/android_deps/libs/com_squareup_javapoet': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/com_squareup_javapoet',
|
|
|
|
|
'version': 'version:1.11.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-22 16:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/commons_cli_commons_cli': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/commons_cli_commons_cli',
|
|
|
|
|
'version': 'version:1.3.1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-04 04:02:19 -08:00
|
|
|
'src/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:1.3.2-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-08-30 14:08:53 +02:00
|
|
|
'src/third_party/android_deps/libs/javax_annotation_jsr250_api': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/javax_annotation_jsr250_api',
|
|
|
|
|
'version': 'version:1.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/javax_inject_javax_inject': {
|
2018-09-19 19:20:19 +02:00
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/javax_inject_javax_inject',
|
|
|
|
|
'version': 'version:1-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-03-21 04:01:22 -07:00
|
|
|
'src/third_party/android_deps/libs/net_sf_kxml_kxml2': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/net_sf_kxml_kxml2',
|
|
|
|
|
'version': 'version:2.3.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/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.3.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/third_party/android_deps/libs/org_checkerframework_checker_qual': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_checker_qual',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:3.0.0-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/org_checkerframework_dataflow': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_dataflow',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:3.0.0-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/org_checkerframework_javacutil': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_checkerframework_javacutil',
|
2020-01-24 18:01:45 -08:00
|
|
|
'version': 'version:3.0.0-cr0',
|
2019-11-20 12:10:08 +01:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
'src/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',
|
2019-11-20 12:10:08 +01:00
|
|
|
'version': 'version:1.17-cr0',
|
2018-09-19 19:20:19 +02:00
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-22 16:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/org_jdom_jdom2': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jdom_jdom2',
|
|
|
|
|
'version': 'version:2.0.6-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-02-20 15:59:54 +01:00
|
|
|
'src/third_party/android_deps/libs/org_jetbrains_annotations': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_annotations',
|
|
|
|
|
'version': 'version:13.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-01-22 16:01:25 -08:00
|
|
|
'src/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_jetbrains_kotlin_kotlin_stdlib',
|
|
|
|
|
'version': 'version:1.3.41-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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',
|
|
|
|
|
'version': 'version:1.3.41-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2020-02-20 15:59:54 +01:00
|
|
|
'src/third_party/android_deps/libs/org_ow2_asm_asm': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_ow2_asm_asm',
|
|
|
|
|
'version': 'version:7.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:7.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:7.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:7.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/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:7.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2019-11-20 12:10:08 +01:00
|
|
|
'src/third_party/android_deps/libs/org_pcollections_pcollections': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_pcollections_pcollections',
|
|
|
|
|
'version': 'version:2.1.2-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
2019-11-20 06:02:38 -08:00
|
|
|
|
2020-01-24 18:01:45 -08:00
|
|
|
'src/third_party/android_deps/libs/org_plumelib_plume_util': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_plumelib_plume_util',
|
|
|
|
|
'version': 'version:1.0.6-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/org_plumelib_reflection_util': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_plumelib_reflection_util',
|
|
|
|
|
'version': 'version:0.0.2-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
'src/third_party/android_deps/libs/org_plumelib_require_javadoc': {
|
|
|
|
|
'packages': [
|
|
|
|
|
{
|
|
|
|
|
'package': 'chromium/third_party/android_deps/libs/org_plumelib_require_javadoc',
|
|
|
|
|
'version': 'version:0.1.0-cr0',
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
'condition': 'checkout_android',
|
|
|
|
|
'dep_type': 'cipd',
|
|
|
|
|
},
|
|
|
|
|
|
2018-09-19 19:20:19 +02:00
|
|
|
# === ANDROID_DEPS Generated Code End ===
|
2012-07-31 21:54:13 +00:00
|
|
|
}
|
2017-08-17 09:54:12 -07:00
|
|
|
|
2012-07-31 21:54:13 +00:00
|
|
|
hooks = [
|
2015-10-15 14:24:09 +02:00
|
|
|
{
|
|
|
|
|
# This clobbers when necessary (based on get_landmines.py). It should be
|
|
|
|
|
# an early hook but it will need to be run after syncing Chromium and
|
|
|
|
|
# setting up the links, so the script actually exists.
|
|
|
|
|
'name': 'landmines',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'action': [
|
|
|
|
|
'python',
|
|
|
|
|
'src/build/landmines.py',
|
|
|
|
|
'--landmine-scripts',
|
2017-05-09 08:30:10 +02:00
|
|
|
'src/tools_webrtc/get_landmines.py',
|
2015-10-15 14:24:09 +02:00
|
|
|
'--src-dir',
|
|
|
|
|
'src',
|
|
|
|
|
],
|
|
|
|
|
},
|
2017-07-27 01:40:18 -07:00
|
|
|
{
|
|
|
|
|
# Ensure that the DEPS'd "depot_tools" has its self-update capability
|
|
|
|
|
# disabled.
|
|
|
|
|
'name': 'disable_depot_tools_selfupdate',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'action': [
|
|
|
|
|
'python',
|
|
|
|
|
'src/third_party/depot_tools/update_depot_tools_toggle.py',
|
|
|
|
|
'--disable',
|
|
|
|
|
],
|
|
|
|
|
},
|
2016-11-22 07:02:11 -08:00
|
|
|
{
|
2018-02-12 08:57:35 +01:00
|
|
|
'name': 'sysroot_arm',
|
2016-11-22 07:02:11 -08:00
|
|
|
'pattern': '.',
|
2018-02-12 08:57:35 +01:00
|
|
|
'condition': 'checkout_linux and checkout_arm',
|
2016-11-22 07:02:11 -08:00
|
|
|
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
2018-02-12 08:57:35 +01:00
|
|
|
'--arch=arm'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'sysroot_arm64',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_linux and checkout_arm64',
|
|
|
|
|
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
|
|
|
'--arch=arm64'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'sysroot_x86',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_linux and (checkout_x86 or checkout_x64)',
|
|
|
|
|
# TODO(mbonadei): change to --arch=x86.
|
|
|
|
|
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
|
|
|
'--arch=i386'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'sysroot_mips',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_linux and checkout_mips',
|
|
|
|
|
# TODO(mbonadei): change to --arch=mips.
|
|
|
|
|
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
|
|
|
'--arch=mipsel'],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'sysroot_x64',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_linux and checkout_x64',
|
|
|
|
|
# TODO(mbonadei): change to --arch=x64.
|
|
|
|
|
'action': ['python', 'src/build/linux/sysroot_scripts/install-sysroot.py',
|
|
|
|
|
'--arch=amd64'],
|
2016-11-22 07:02:11 -08:00
|
|
|
},
|
2018-02-12 13:22:50 +01:00
|
|
|
{
|
|
|
|
|
# Case-insensitivity for the Win SDK. Must run before win_toolchain below.
|
|
|
|
|
'name': 'ciopfs_linux',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_win and host_os == "linux"',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-browser-clang/ciopfs',
|
|
|
|
|
'-s', 'src/build/ciopfs.sha1',
|
|
|
|
|
]
|
|
|
|
|
},
|
2016-11-22 07:02:11 -08:00
|
|
|
{
|
2017-10-09 13:00:41 +02:00
|
|
|
# Update the Windows toolchain if necessary. Must run before 'clang' below.
|
2016-11-22 07:02:11 -08:00
|
|
|
'name': 'win_toolchain',
|
|
|
|
|
'pattern': '.',
|
2018-02-13 11:29:09 +01:00
|
|
|
'condition': 'checkout_win',
|
|
|
|
|
'action': ['python', 'src/build/vs_toolchain.py', 'update', '--force'],
|
2016-11-22 07:02:11 -08:00
|
|
|
},
|
2017-09-08 10:52:17 -07:00
|
|
|
{
|
|
|
|
|
# Update the Mac toolchain if necessary.
|
|
|
|
|
'name': 'mac_toolchain',
|
|
|
|
|
'pattern': '.',
|
2017-10-09 13:00:41 +02:00
|
|
|
'condition': 'checkout_mac',
|
2017-09-08 10:52:17 -07:00
|
|
|
'action': ['python', 'src/build/mac_toolchain.py'],
|
|
|
|
|
},
|
2016-11-22 07:02:11 -08:00
|
|
|
# Pull binutils for linux, enabled debug fission for faster linking /
|
|
|
|
|
# debugging when used with clang on Ubuntu Precise.
|
|
|
|
|
# https://code.google.com/p/chromium/issues/detail?id=352046
|
|
|
|
|
{
|
|
|
|
|
'name': 'binutils',
|
|
|
|
|
'pattern': 'src/third_party/binutils',
|
2017-10-09 13:00:41 +02:00
|
|
|
'condition': 'host_os == "linux"',
|
2016-11-22 07:02:11 -08:00
|
|
|
'action': [
|
|
|
|
|
'python',
|
|
|
|
|
'src/third_party/binutils/download.py',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
# Note: On Win, this should run after win_toolchain, as it may use it.
|
|
|
|
|
'name': 'clang',
|
|
|
|
|
'pattern': '.',
|
2017-10-09 13:00:41 +02:00
|
|
|
'action': ['python', 'src/tools/clang/scripts/update.py'],
|
2016-11-22 07:02:11 -08:00
|
|
|
},
|
2016-11-25 04:58:47 -08:00
|
|
|
{
|
|
|
|
|
# Update LASTCHANGE.
|
|
|
|
|
'name': 'lastchange',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'action': ['python', 'src/build/util/lastchange.py',
|
|
|
|
|
'-o', 'src/build/util/LASTCHANGE'],
|
|
|
|
|
},
|
2016-11-22 07:02:11 -08:00
|
|
|
# Pull clang-format binaries using checked-in hashes.
|
|
|
|
|
{
|
|
|
|
|
'name': 'clang_format_win',
|
|
|
|
|
'pattern': '.',
|
2017-10-09 13:00:41 +02:00
|
|
|
'condition': 'host_os == "win"',
|
2016-11-22 07:02:11 -08:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--platform=win32',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-clang-format',
|
|
|
|
|
'-s', 'src/buildtools/win/clang-format.exe.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'clang_format_mac',
|
|
|
|
|
'pattern': '.',
|
2017-10-09 13:00:41 +02:00
|
|
|
'condition': 'host_os == "mac"',
|
2016-11-22 07:02:11 -08:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--platform=darwin',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-clang-format',
|
|
|
|
|
'-s', 'src/buildtools/mac/clang-format.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'clang_format_linux',
|
|
|
|
|
'pattern': '.',
|
2017-10-09 13:00:41 +02:00
|
|
|
'condition': 'host_os == "linux"',
|
2016-11-22 07:02:11 -08:00
|
|
|
'action': [ 'download_from_google_storage',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--platform=linux*',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-clang-format',
|
|
|
|
|
'-s', 'src/buildtools/linux64/clang-format.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
2017-10-27 10:14:45 +02:00
|
|
|
# Pull rc binaries using checked-in hashes.
|
|
|
|
|
{
|
|
|
|
|
'name': 'rc_win',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_win and host_os == "win"',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
|
|
|
'-s', 'src/build/toolchain/win/rc/win/rc.exe.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'rc_mac',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_win and host_os == "mac"',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
|
|
|
'-s', 'src/build/toolchain/win/rc/mac/rc.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'rc_linux',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_win and host_os == "linux"',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
'--no_resume',
|
|
|
|
|
'--no_auth',
|
|
|
|
|
'--bucket', 'chromium-browser-clang/rc',
|
|
|
|
|
'-s', 'src/build/toolchain/win/rc/linux64/rc.sha1',
|
|
|
|
|
],
|
|
|
|
|
},
|
2016-11-22 07:02:11 -08:00
|
|
|
{
|
2017-10-10 13:28:18 +02:00
|
|
|
'name': 'msan_chained_origins',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_instrumented_libraries',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
"--no_resume",
|
|
|
|
|
"--no_auth",
|
|
|
|
|
"--bucket", "chromium-instrumented-libraries",
|
|
|
|
|
"-s", "src/third_party/instrumented_libraries/binaries/msan-chained-origins-trusty.tgz.sha1",
|
|
|
|
|
],
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
'name': 'msan_no_origins',
|
|
|
|
|
'pattern': '.',
|
|
|
|
|
'condition': 'checkout_instrumented_libraries',
|
|
|
|
|
'action': [ 'python',
|
|
|
|
|
'src/third_party/depot_tools/download_from_google_storage.py',
|
|
|
|
|
"--no_resume",
|
|
|
|
|
"--no_auth",
|
|
|
|
|
"--bucket", "chromium-instrumented-libraries",
|
|
|
|
|
"-s", "src/third_party/instrumented_libraries/binaries/msan-no-origins-trusty.tgz.sha1",
|
|
|
|
|
],
|
2016-11-22 07:02:11 -08:00
|
|
|
},
|
2012-07-31 21:54:13 +00:00
|
|
|
{
|
2013-11-04 12:07:57 +00:00
|
|
|
# Download test resources, i.e. video and audio files from Google Storage.
|
2014-12-03 07:11:44 +00:00
|
|
|
'pattern': '.',
|
|
|
|
|
'action': ['download_from_google_storage',
|
|
|
|
|
'--directory',
|
|
|
|
|
'--recursive',
|
|
|
|
|
'--num_threads=10',
|
|
|
|
|
'--no_auth',
|
2015-12-18 12:29:28 -08:00
|
|
|
'--quiet',
|
2014-12-03 07:11:44 +00:00
|
|
|
'--bucket', 'chromium-webrtc-resources',
|
|
|
|
|
'src/resources'],
|
2012-07-31 21:54:13 +00:00
|
|
|
},
|
|
|
|
|
]
|
2017-08-17 09:54:12 -07:00
|
|
|
|
2019-02-08 10:39:45 +01:00
|
|
|
recursedeps = []
|
2017-09-15 06:15:48 +02:00
|
|
|
|
|
|
|
|
# Define rules for which include paths are allowed in our source.
|
|
|
|
|
include_rules = [
|
|
|
|
|
# Base is only used to build Android APK tests and may not be referenced by
|
|
|
|
|
# WebRTC production code.
|
|
|
|
|
"-base",
|
|
|
|
|
"-chromium",
|
|
|
|
|
"+external/webrtc/webrtc", # Android platform build.
|
|
|
|
|
"+libyuv",
|
2018-05-21 15:54:42 +02:00
|
|
|
|
|
|
|
|
# These should eventually move out of here.
|
2017-09-15 06:47:31 +02:00
|
|
|
"+common_types.h",
|
2017-09-15 06:15:48 +02:00
|
|
|
|
|
|
|
|
"+WebRTC",
|
2017-09-15 06:47:31 +02:00
|
|
|
"+api",
|
|
|
|
|
"+modules/include",
|
|
|
|
|
"+rtc_base",
|
|
|
|
|
"+test",
|
|
|
|
|
"+rtc_tools",
|
2018-06-11 07:48:31 +00:00
|
|
|
|
2018-10-19 15:29:54 +02:00
|
|
|
# Abseil whitelist. Keep this in sync with abseil-in-webrtc.md.
|
2019-01-25 12:49:14 -08:00
|
|
|
"+absl/algorithm/algorithm.h",
|
|
|
|
|
"+absl/algorithm/container.h",
|
2019-01-17 13:07:25 +01:00
|
|
|
"+absl/base/attributes.h",
|
2019-02-19 20:20:16 +01:00
|
|
|
"+absl/base/config.h",
|
2019-06-03 14:37:50 +02:00
|
|
|
"+absl/base/macros.h",
|
2018-08-01 17:13:08 +02:00
|
|
|
"+absl/container/inlined_vector.h",
|
2018-06-29 14:34:50 +02:00
|
|
|
"+absl/memory/memory.h",
|
2018-11-24 20:59:41 -08:00
|
|
|
"+absl/meta/type_traits.h",
|
2018-10-19 15:29:54 +02:00
|
|
|
"+absl/strings/ascii.h",
|
|
|
|
|
"+absl/strings/match.h",
|
2019-02-14 15:13:09 -08:00
|
|
|
"+absl/strings/str_replace.h",
|
2018-08-15 15:23:08 +02:00
|
|
|
"+absl/strings/string_view.h",
|
2018-06-11 07:48:31 +00:00
|
|
|
"+absl/types/optional.h",
|
2018-06-26 10:44:13 +02:00
|
|
|
"+absl/types/variant.h",
|
2019-06-27 15:59:09 +02:00
|
|
|
|
|
|
|
|
# Abseil flags are allowed in tests and tools.
|
|
|
|
|
"+absl/flags",
|
2017-09-15 06:15:48 +02:00
|
|
|
]
|
2019-10-17 16:04:07 +02:00
|
|
|
|
|
|
|
|
specific_include_rules = {
|
|
|
|
|
"webrtc_lib_link_test\.cc": [
|
|
|
|
|
"+media/engine",
|
|
|
|
|
"+modules/audio_device",
|
|
|
|
|
"+modules/audio_processing",
|
|
|
|
|
]
|
|
|
|
|
}
|