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 906 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
917 'pattern': '.', | 917 'pattern': '.', |
918 'action': [ 'download_from_google_storage', | 918 'action': [ 'download_from_google_storage', |
919 '--no_resume', | 919 '--no_resume', |
920 '--platform=linux*', | 920 '--platform=linux*', |
921 '--no_auth', | 921 '--no_auth', |
922 '--bucket', 'chromium-clang-format', | 922 '--bucket', 'chromium-clang-format', |
923 '-s', 'src/buildtools/linux64/clang-format.sha1', | 923 '-s', 'src/buildtools/linux64/clang-format.sha1', |
924 ], | 924 ], |
925 }, | 925 }, |
926 { | 926 { |
| 927 'name': 'checkstyle', |
| 928 'pattern': '.', |
| 929 'action': [ 'download_from_google_storage', |
| 930 '--no_resume', |
| 931 '--no_auth', |
| 932 '--bucket', 'chromium-android-tools/checkstyle', |
| 933 '-s', 'src/third_party/checkstyle/checkstyle-7.6.1-all.jar.sha1' |
| 934 ], |
| 935 }, |
| 936 { |
927 'name': 'gvr_static_shim_android_arm', | 937 'name': 'gvr_static_shim_android_arm', |
928 'pattern': '\\.sha1', | 938 'pattern': '\\.sha1', |
929 'action': [ 'download_from_google_storage', | 939 'action': [ 'download_from_google_storage', |
930 '--no_resume', | 940 '--no_resume', |
931 '--platform=linux*', | 941 '--platform=linux*', |
932 '--no_auth', | 942 '--no_auth', |
933 '--bucket', 'chromium-gvr-static-shim', | 943 '--bucket', 'chromium-gvr-static-shim', |
934 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.
sha1', | 944 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a.
sha1', |
935 ], | 945 ], |
936 }, | 946 }, |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1154 recursedeps = [ | 1164 recursedeps = [ |
1155 # buildtools provides clang_format, libc++, and libc++abi | 1165 # buildtools provides clang_format, libc++, and libc++abi |
1156 'src/buildtools', | 1166 'src/buildtools', |
1157 # android_tools manages the NDK. | 1167 # android_tools manages the NDK. |
1158 'src/third_party/android_tools', | 1168 'src/third_party/android_tools', |
1159 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1169 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1160 ("src/third_party/angle", "DEPS.chromium"), | 1170 ("src/third_party/angle", "DEPS.chromium"), |
1161 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1171 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
1162 ("src/third_party/swiftshader", "DEPS"), | 1172 ("src/third_party/swiftshader", "DEPS"), |
1163 ] | 1173 ] |
OLD | NEW |