| 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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 478 'src/third_party/lss': | 478 'src/third_party/lss': |
| 479 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), | 479 Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
on'), |
| 480 | 480 |
| 481 'src/third_party/requests/src': | 481 'src/third_party/requests/src': |
| 482 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 482 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 483 | 483 |
| 484 'src/third_party/custom_tabs_client/src': | 484 'src/third_party/custom_tabs_client/src': |
| 485 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'c51efbddc4f976c88d15c730a79feba65ca857af', | 485 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'c51efbddc4f976c88d15c730a79feba65ca857af', |
| 486 | 486 |
| 487 'src/third_party/gvr-android-sdk/src': | 487 'src/third_party/gvr-android-sdk/src': |
| 488 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + 'cff15311c7c1abbe77b3c714135dccc2009ee473', | 488 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git'
+ '@' + '25e7e14413229d4644a66be77e8f8ddeb3f91fe7', |
| 489 }, | 489 }, |
| 490 } | 490 } |
| 491 | 491 |
| 492 include_rules = [ | 492 include_rules = [ |
| 493 # Everybody can use some things. | 493 # Everybody can use some things. |
| 494 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 494 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
| 495 '+base', | 495 '+base', |
| 496 '+build', | 496 '+build', |
| 497 '+ipc', | 497 '+ipc', |
| 498 | 498 |
| (...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1006 ], | 1006 ], |
| 1007 }, | 1007 }, |
| 1008 ] | 1008 ] |
| 1009 | 1009 |
| 1010 recursedeps = [ | 1010 recursedeps = [ |
| 1011 # android_tools manages the NDK. | 1011 # android_tools manages the NDK. |
| 1012 'src/third_party/android_tools', | 1012 'src/third_party/android_tools', |
| 1013 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1013 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1014 ("src/third_party/angle", "DEPS.chromium"), | 1014 ("src/third_party/angle", "DEPS.chromium"), |
| 1015 ] | 1015 ] |
| OLD | NEW |