| 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/lss': | 507 'src/third_party/lss': |
| 508 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 508 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 509 | 509 |
| 510 'src/third_party/requests/src': | 510 'src/third_party/requests/src': |
| 511 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 511 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 512 | 512 |
| 513 'src/third_party/custom_tabs_client/src': | 513 'src/third_party/custom_tabs_client/src': |
| 514 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'e2b6730dad438de70d88b6ae5d33aa0995ba77d1', | 514 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'e2b6730dad438de70d88b6ae5d33aa0995ba77d1', |
| 515 | 515 |
| 516 'src/third_party/gvr-android-sdk/src': | 516 'src/third_party/gvr-android-sdk/src': |
| 517 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '25e7e14413229d4644a66be77e8f8ddeb3f91fe7', | 517 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '8d1395957283ee13ebe2bc672ba24e5ca4ec343f', |
| 518 }, | 518 }, |
| 519 } | 519 } |
| 520 | 520 |
| 521 include_rules = [ | 521 include_rules = [ |
| 522 # Everybody can use some things. | 522 # Everybody can use some things. |
| 523 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 523 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
| 524 '+base', | 524 '+base', |
| 525 '+build', | 525 '+build', |
| 526 '+ipc', | 526 '+ipc', |
| 527 | 527 |
| (...skipping 568 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 ] | 1096 ] |
| 1097 | 1097 |
| 1098 recursedeps = [ | 1098 recursedeps = [ |
| 1099 # buildtools provides clang_format, libc++, and libc++abi | 1099 # buildtools provides clang_format, libc++, and libc++abi |
| 1100 'src/buildtools', | 1100 'src/buildtools', |
| 1101 # android_tools manages the NDK. | 1101 # android_tools manages the NDK. |
| 1102 'src/third_party/android_tools', | 1102 'src/third_party/android_tools', |
| 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1103 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1104 ("src/third_party/angle", "DEPS.chromium"), | 1104 ("src/third_party/angle", "DEPS.chromium"), |
| 1105 ] | 1105 ] |
| OLD | NEW |