| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 # the commit queue can handle CLs rolling swarming_client | 49 # the commit queue can handle CLs rolling swarming_client |
| 50 # and whatever else without interference from each other. | 50 # and whatever else without interference from each other. |
| 51 'swarming_revision': 'a56c2b39ca23bdf41458421a7f825ddbf3f43f28', | 51 'swarming_revision': 'a56c2b39ca23bdf41458421a7f825ddbf3f43f28', |
| 52 # Three lines of non-changing comments so that | 52 # Three lines of non-changing comments so that |
| 53 # the commit queue can handle CLs rolling ANGLE | 53 # the commit queue can handle CLs rolling ANGLE |
| 54 # and whatever else without interference from each other. | 54 # and whatever else without interference from each other. |
| 55 'angle_revision': '70c95fa6ffcbe0914adb5e641288b910ddf1db12', | 55 'angle_revision': '70c95fa6ffcbe0914adb5e641288b910ddf1db12', |
| 56 # Three lines of non-changing comments so that | 56 # Three lines of non-changing comments so that |
| 57 # the commit queue can handle CLs rolling build tools | 57 # the commit queue can handle CLs rolling build tools |
| 58 # and whatever else without interference from each other. | 58 # and whatever else without interference from each other. |
| 59 'buildtools_revision': '1dcd1bdbe93467531a50b60dbd18860803ca7be1', | 59 'buildtools_revision': 'c2827ae578be603fb41a141631c27c3c09191dca', |
| 60 # Three lines of non-changing comments so that | 60 # Three lines of non-changing comments so that |
| 61 # the commit queue can handle CLs rolling SwiftShader | 61 # the commit queue can handle CLs rolling SwiftShader |
| 62 # and whatever else without interference from each other. | 62 # and whatever else without interference from each other. |
| 63 'swiftshader_revision': '4d97f36abd208230b0f3c591af0619f3cc96c533', | 63 'swiftshader_revision': '4d97f36abd208230b0f3c591af0619f3cc96c533', |
| 64 # Three lines of non-changing comments so that | 64 # Three lines of non-changing comments so that |
| 65 # the commit queue can handle CLs rolling PDFium | 65 # the commit queue can handle CLs rolling PDFium |
| 66 # and whatever else without interference from each other. | 66 # and whatever else without interference from each other. |
| 67 'pdfium_revision': '00c3cfdbae074a379cab4edad0e4fa75d6127797', | 67 'pdfium_revision': '00c3cfdbae074a379cab4edad0e4fa75d6127797', |
| 68 # Three lines of non-changing comments so that | 68 # Three lines of non-changing comments so that |
| 69 # the commit queue can handle CLs rolling openmax_dl | 69 # the commit queue can handle CLs rolling openmax_dl |
| (...skipping 1142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1212 } | 1212 } |
| 1213 | 1213 |
| 1214 recursedeps = [ | 1214 recursedeps = [ |
| 1215 # buildtools provides clang_format, libc++, and libc++abi | 1215 # buildtools provides clang_format, libc++, and libc++abi |
| 1216 'src/buildtools', | 1216 'src/buildtools', |
| 1217 # android_tools manages the NDK. | 1217 # android_tools manages the NDK. |
| 1218 'src/third_party/android_tools', | 1218 'src/third_party/android_tools', |
| 1219 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1219 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1220 ("src/third_party/angle", "DEPS.chromium"), | 1220 ("src/third_party/angle", "DEPS.chromium"), |
| 1221 ] | 1221 ] |
| OLD | NEW |