Chromium Code Reviews| 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 905 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 916 'name': 'clang_format_linux', | 916 'name': 'clang_format_linux', |
| 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 # Pull checkstyle binaries using checked-in hashes. | |
|
agrieve
2017/04/19 17:36:54
nit: this comment isn't really useful. I'd remove
| |
| 927 { | |
| 928 'name': 'checkstyle', | |
| 929 'pattern': '.', | |
| 930 'action': [ 'download_from_google_storage', | |
| 931 '--no_resume', | |
| 932 '--no_auth', | |
| 933 '--bucket', 'chromium-android-tools/checkstyle', | |
| 934 '-s', 'src/third_party/checkstyle/checkstyle-7.6.1-all.jar.sha1' | |
| 935 ], | |
| 936 }, | |
| 926 { | 937 { |
| 927 'name': 'gvr_static_shim_android_arm', | 938 'name': 'gvr_static_shim_android_arm', |
| 928 'pattern': '\\.sha1', | 939 'pattern': '\\.sha1', |
| 929 'action': [ 'download_from_google_storage', | 940 'action': [ 'download_from_google_storage', |
| 930 '--no_resume', | 941 '--no_resume', |
| 931 '--platform=linux*', | 942 '--platform=linux*', |
| 932 '--no_auth', | 943 '--no_auth', |
| 933 '--bucket', 'chromium-gvr-static-shim', | 944 '--bucket', 'chromium-gvr-static-shim', |
| 934 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a. sha1', | 945 '-s', 'src/third_party/gvr-android-sdk/libgvr_shim_static_arm.a. sha1', |
| 935 ], | 946 ], |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1154 recursedeps = [ | 1165 recursedeps = [ |
| 1155 # buildtools provides clang_format, libc++, and libc++abi | 1166 # buildtools provides clang_format, libc++, and libc++abi |
| 1156 'src/buildtools', | 1167 'src/buildtools', |
| 1157 # android_tools manages the NDK. | 1168 # android_tools manages the NDK. |
| 1158 'src/third_party/android_tools', | 1169 'src/third_party/android_tools', |
| 1159 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1170 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1160 ("src/third_party/angle", "DEPS.chromium"), | 1171 ("src/third_party/angle", "DEPS.chromium"), |
| 1161 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. | 1172 # SwiftShader manages DEPS that it also owns the build files for, such as Subz ero. |
| 1162 ("src/third_party/swiftshader", "DEPS"), | 1173 ("src/third_party/swiftshader", "DEPS"), |
| 1163 ] | 1174 ] |
| OLD | NEW |