| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 # the commit queue can handle CLs rolling devtools-node-modules | 105 # the commit queue can handle CLs rolling devtools-node-modules |
| 106 # and whatever else without interference from each other. | 106 # and whatever else without interference from each other. |
| 107 'devtools_node_modules_revision': '6226d6cd80aaf2e5295ed460cf73ef6a582e4d78', | 107 'devtools_node_modules_revision': '6226d6cd80aaf2e5295ed460cf73ef6a582e4d78', |
| 108 # Three lines of non-changing comments so that | 108 # Three lines of non-changing comments so that |
| 109 # the commit queue can handle CLs rolling libFuzzer | 109 # the commit queue can handle CLs rolling libFuzzer |
| 110 # and whatever else without interference from each other. | 110 # and whatever else without interference from each other. |
| 111 'scanbuild_revision': '15bd7ca2934162c51654ddffc52933e45f95e7ef', | 111 'scanbuild_revision': '15bd7ca2934162c51654ddffc52933e45f95e7ef', |
| 112 # Three lines of non-changing comments so that | 112 # Three lines of non-changing comments so that |
| 113 # the commit queue can handle CLs rolling libprotobuf-mutator | 113 # the commit queue can handle CLs rolling libprotobuf-mutator |
| 114 # and whatever else without interference from each other. | 114 # and whatever else without interference from each other. |
| 115 'libprotobuf-mutator': '9f19110ef75ff7e8c50428247a262a131f312c3c', | 115 'libprotobuf-mutator': '2d609dfa69f670f6a1daf80eaa2d538f96120b2d', |
| 116 } | 116 } |
| 117 | 117 |
| 118 # Only these hosts are allowed for dependencies in this DEPS file. | 118 # Only these hosts are allowed for dependencies in this DEPS file. |
| 119 # If you need to add a new host, contact chrome infrastracture team. | 119 # If you need to add a new host, contact chrome infrastracture team. |
| 120 allowed_hosts = [ | 120 allowed_hosts = [ |
| 121 'android.googlesource.com', | 121 'android.googlesource.com', |
| 122 'boringssl.googlesource.com', | 122 'boringssl.googlesource.com', |
| 123 'chromium.googlesource.com', | 123 'chromium.googlesource.com', |
| 124 'pdfium.googlesource.com', | 124 'pdfium.googlesource.com', |
| 125 'skia.googlesource.com', | 125 'skia.googlesource.com', |
| (...skipping 1020 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 recursedeps = [ | 1146 recursedeps = [ |
| 1147 # buildtools provides clang_format, libc++, and libc++abi | 1147 # buildtools provides clang_format, libc++, and libc++abi |
| 1148 'src/buildtools', | 1148 'src/buildtools', |
| 1149 # android_tools manages the NDK. | 1149 # android_tools manages the NDK. |
| 1150 'src/third_party/android_tools', | 1150 'src/third_party/android_tools', |
| 1151 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1151 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1152 ("src/third_party/angle", "DEPS.chromium"), | 1152 ("src/third_party/angle", "DEPS.chromium"), |
| 1153 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1153 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1154 ("src/third_party/swiftshader", "DEPS"), | 1154 ("src/third_party/swiftshader", "DEPS"), |
| 1155 ] | 1155 ] |
| OLD | NEW |