| 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 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'android.googlesource.com', | 113 'android.googlesource.com', |
| 114 'boringssl.googlesource.com', | 114 'boringssl.googlesource.com', |
| 115 'chromium.googlesource.com', | 115 'chromium.googlesource.com', |
| 116 'pdfium.googlesource.com', | 116 'pdfium.googlesource.com', |
| 117 'skia.googlesource.com', | 117 'skia.googlesource.com', |
| 118 'swiftshader.googlesource.com', | 118 'swiftshader.googlesource.com', |
| 119 ] | 119 ] |
| 120 | 120 |
| 121 deps = { | 121 deps = { |
| 122 'src/breakpad/src': | 122 'src/breakpad/src': |
| 123 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + 'd0c70649064fb846
7aea5910eb8007e9afe6efd7', | 123 Var('chromium_git') + '/breakpad/breakpad/src.git' + '@' + '3166d8be97c96e56
7e2c23a496cae4b9194f57fa', |
| 124 | 124 |
| 125 'src/buildtools': | 125 'src/buildtools': |
| 126 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_re
vision'), | 126 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_re
vision'), |
| 127 | 127 |
| 128 'src/sdch/open-vcdiff': | 128 'src/sdch/open-vcdiff': |
| 129 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' +
'2b9bd1fe548520e9355e457a134bab7e2f9c56c0', | 129 Var('chromium_git') + '/external/github.com/google/open-vcdiff.git' + '@' +
'2b9bd1fe548520e9355e457a134bab7e2f9c56c0', |
| 130 | 130 |
| 131 'src/testing/gtest': | 131 'src/testing/gtest': |
| 132 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '
6f8a66431cb592dad629028a50b3dd418a408c87', | 132 Var('chromium_git') + '/external/github.com/google/googletest.git' + '@' + '
6f8a66431cb592dad629028a50b3dd418a408c87', |
| 133 | 133 |
| (...skipping 946 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1080 ] | 1080 ] |
| 1081 | 1081 |
| 1082 recursedeps = [ | 1082 recursedeps = [ |
| 1083 # buildtools provides clang_format, libc++, and libc++abi | 1083 # buildtools provides clang_format, libc++, and libc++abi |
| 1084 'src/buildtools', | 1084 'src/buildtools', |
| 1085 # android_tools manages the NDK. | 1085 # android_tools manages the NDK. |
| 1086 'src/third_party/android_tools', | 1086 'src/third_party/android_tools', |
| 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1087 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1088 ("src/third_party/angle", "DEPS.chromium"), | 1088 ("src/third_party/angle", "DEPS.chromium"), |
| 1089 ] | 1089 ] |
| OLD | NEW |