| OLD | NEW |
| 1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
| 2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
| 3 # where. | 3 # where. |
| 4 # | 4 # |
| 5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
| 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
| 7 # | 7 # |
| 8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
| 9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
| 10 # | 10 # |
| (...skipping 939 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 950 'name': 'gvr_common_aar', | 950 'name': 'gvr_common_aar', |
| 951 'pattern': '\\.sha1', | 951 'pattern': '\\.sha1', |
| 952 'action': [ 'download_from_google_storage', | 952 'action': [ 'download_from_google_storage', |
| 953 '--no_resume', | 953 '--no_resume', |
| 954 '--platform=linux*', | 954 '--platform=linux*', |
| 955 '--no_auth', | 955 '--no_auth', |
| 956 '--bucket', 'chromium-gvr-static-shim', | 956 '--bucket', 'chromium-gvr-static-shim', |
| 957 '-s', 'src/third_party/gvr-android-sdk/common_library.aar.sha1', | 957 '-s', 'src/third_party/gvr-android-sdk/common_library.aar.sha1', |
| 958 ], | 958 ], |
| 959 }, | 959 }, |
| 960 { |
| 961 'name': 'vr_controller_test_api', |
| 962 'pattern': '\\.sha1', |
| 963 'action': [ 'download_from_google_storage', |
| 964 '--no_resume', |
| 965 '--platform=linux*', |
| 966 '--no_auth', |
| 967 '--bucket', 'chromium-gvr-static-shim/controller_test_api', |
| 968 '-s', 'src/third_party/gvr-android-sdk/test-libraries/controller
_test_api.aar.sha1', |
| 969 ], |
| 970 }, |
| 960 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. | 971 # Pull luci-go binaries (isolate, swarming) using checked-in hashes. |
| 961 { | 972 { |
| 962 'name': 'luci-go_win', | 973 'name': 'luci-go_win', |
| 963 'pattern': '.', | 974 'pattern': '.', |
| 964 'action': [ 'download_from_google_storage', | 975 'action': [ 'download_from_google_storage', |
| 965 '--no_resume', | 976 '--no_resume', |
| 966 '--platform=win32', | 977 '--platform=win32', |
| 967 '--no_auth', | 978 '--no_auth', |
| 968 '--bucket', 'chromium-luci', | 979 '--bucket', 'chromium-luci', |
| 969 '-d', 'src/tools/luci-go/win64', | 980 '-d', 'src/tools/luci-go/win64', |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 recursedeps = [ | 1166 recursedeps = [ |
| 1156 # buildtools provides clang_format, libc++, and libc++abi | 1167 # buildtools provides clang_format, libc++, and libc++abi |
| 1157 'src/buildtools', | 1168 'src/buildtools', |
| 1158 # android_tools manages the NDK. | 1169 # android_tools manages the NDK. |
| 1159 'src/third_party/android_tools', | 1170 'src/third_party/android_tools', |
| 1160 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1171 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1161 ("src/third_party/angle", "DEPS.chromium"), | 1172 ("src/third_party/angle", "DEPS.chromium"), |
| 1162 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1173 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1163 ("src/third_party/swiftshader", "DEPS"), | 1174 ("src/third_party/swiftshader", "DEPS"), |
| 1164 ] | 1175 ] |
| OLD | NEW |