| 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 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', | 478 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
| 479 | 479 |
| 480 'src/third_party/lss': | 480 'src/third_party/lss': |
| 481 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 481 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 482 | 482 |
| 483 'src/third_party/requests/src': | 483 'src/third_party/requests/src': |
| 484 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 484 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 485 | 485 |
| 486 'src/third_party/custom_tabs_client/src': | 486 'src/third_party/custom_tabs_client/src': |
| 487 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'fd52c2d90732d9a31a0bdf883d11d16f1d7b5243', | 487 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + 'fd52c2d90732d9a31a0bdf883d11d16f1d7b5243', |
| 488 |
| 489 'src/third_party/gvr-android-sdk/src': |
| 490 Var('chromium_git') + '/external/github.com/googlevr/gvr-android-sdk.git' +
'@' + '6a1632af2a08619e9a27c75acec4650b81acb6c7', |
| 488 }, | 491 }, |
| 489 } | 492 } |
| 490 | 493 |
| 491 recursedeps = [ 'src/third_party/android_tools' ] | 494 recursedeps = [ 'src/third_party/android_tools' ] |
| 492 | 495 |
| 493 include_rules = [ | 496 include_rules = [ |
| 494 # Everybody can use some things. | 497 # Everybody can use some things. |
| 495 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. | 498 # NOTE: THIS HAS TO STAY IN SYNC WITH third_party/DEPS which disallows these. |
| 496 '+base', | 499 '+base', |
| 497 '+build', | 500 '+build', |
| (...skipping 391 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 { | 892 { |
| 890 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 893 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 891 'name': 'gyp', | 894 'name': 'gyp', |
| 892 'pattern': '.', | 895 'pattern': '.', |
| 893 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 896 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 894 }, | 897 }, |
| 895 ] | 898 ] |
| 896 | 899 |
| 897 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 900 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 898 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 901 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |