| 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 474 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 485 | 485 |
| 486 'src/third_party/netty4/src': | 486 'src/third_party/netty4/src': |
| 487 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', | 487 Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
19414d0ac81f2ef6ba3c', |
| 488 | 488 |
| 489 'src/third_party/robolectric/lib': | 489 'src/third_party/robolectric/lib': |
| 490 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', | 490 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', |
| 491 | 491 |
| 492 'src/third_party/ub-uiautomator/lib': | 492 'src/third_party/ub-uiautomator/lib': |
| 493 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', | 493 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
00270549ce3161ae72ceb24712618ea28b4f9434', |
| 494 | 494 |
| 495 'src/third_party/leakcanary/src': |
| 496 Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
'608ded739e036a3aa69db47ac43777dcee506f8e', |
| 497 |
| 495 'src/third_party/lss': | 498 'src/third_party/lss': |
| 496 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 499 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 497 | 500 |
| 498 'src/third_party/requests/src': | 501 'src/third_party/requests/src': |
| 499 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 502 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 500 | 503 |
| 501 'src/third_party/custom_tabs_client/src': | 504 'src/third_party/custom_tabs_client/src': |
| 502 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '592e63122055d37e58cd37bd89a973eed98340ef', | 505 Var('chromium_git') + '/external/github.com/GoogleChrome/custom-tabs-clien
t.git' + '@' + '592e63122055d37e58cd37bd89a973eed98340ef', |
| 503 }, | 506 }, |
| 504 } | 507 } |
| (...skipping 324 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 829 'src/tools', | 832 'src/tools', |
| 830 ], | 833 ], |
| 831 }, | 834 }, |
| 832 { | 835 { |
| 833 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 836 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 834 'name': 'gyp', | 837 'name': 'gyp', |
| 835 'pattern': '.', | 838 'pattern': '.', |
| 836 'action': ['python', 'src/build/gyp_chromium'], | 839 'action': ['python', 'src/build/gyp_chromium'], |
| 837 }, | 840 }, |
| 838 ] | 841 ] |
| OLD | NEW |