| 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 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 507 'src/third_party/leakcanary/src': | 507 'src/third_party/leakcanary/src': |
| 508 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', | 508 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
| 509 | 509 |
| 510 'src/third_party/lss': | 510 'src/third_party/lss': |
| 511 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 511 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 512 | 512 |
| 513 'src/third_party/requests/src': | 513 'src/third_party/requests/src': |
| 514 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 514 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 515 | 515 |
| 516 'src/third_party/custom_tabs_client/src': | 516 'src/third_party/custom_tabs_client/src': |
| 517 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '3c95e2dda9b292653ff13454f093e5ff136814d2', | 517 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '4889dd9d552d24f08584dde29f639c0da4ea0f12', |
| 518 | 518 |
| 519 'src/third_party/gvr-android-sdk/src': | 519 'src/third_party/gvr-android-sdk/src': |
| 520 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '8d1395957283ee13ebe2bc672ba24e5ca4ec343f', | 520 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '8d1395957283ee13ebe2bc672ba24e5ca4ec343f', |
| 521 }, | 521 }, |
| 522 } | 522 } |
| 523 | 523 |
| 524 include_rules = [ | 524 include_rules = [ |
| 525 # Everybody can use some things. | 525 # Everybody can use some things. |
| 526 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 526 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
| 527 '+base', | 527 '+base', |
| (...skipping 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1155 recursedeps = [ | 1155 recursedeps = [ |
| 1156 # buildtools provides clang_format, libc++, and libc++abi | 1156 # buildtools provides clang_format, libc++, and libc++abi |
| 1157 'src/buildtools', | 1157 'src/buildtools', |
| 1158 # android_tools manages the NDK. | 1158 # android_tools manages the NDK. |
| 1159 'src/third_party/android_tools', | 1159 'src/third_party/android_tools', |
| 1160 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1160 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1161 ("src/third_party/angle", "DEPS.chromium"), | 1161 ("src/third_party/angle", "DEPS.chromium"), |
| 1162 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. | 1162 # SwiftShader manages DEPS that it also owns the build files for, such as Subz
ero. |
| 1163 ("src/third_party/swiftshader", "DEPS"), | 1163 ("src/third_party/swiftshader", "DEPS"), |
| 1164 ] | 1164 ] |
| OLD | NEW |