| 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 458 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 469 | 469 |
| 470 'src/third_party/jsr-305/src': | 470 'src/third_party/jsr-305/src': |
| 471 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', | 471 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', |
| 472 | 472 |
| 473 'src/third_party/junit/src': | 473 'src/third_party/junit/src': |
| 474 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', | 474 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', |
| 475 | 475 |
| 476 'src/third_party/mockito/src': | 476 'src/third_party/mockito/src': |
| 477 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'ed99a52e94a
84bd7c467f2443b475a22fcc6ba8e', | 477 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'ed99a52e94a
84bd7c467f2443b475a22fcc6ba8e', |
| 478 | 478 |
| 479 'src/third_party/robolectric/lib': |
| 480 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', |
| 481 |
| 479 'src/third_party/lss': | 482 'src/third_party/lss': |
| 480 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 483 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 481 | 484 |
| 482 'src/third_party/requests/src': | 485 'src/third_party/requests/src': |
| 483 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 486 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 484 | 487 |
| 485 }, | 488 }, |
| 486 } | 489 } |
| 487 | 490 |
| 488 | 491 |
| (...skipping 288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 777 # corresponding .py files have already been deleted. | 780 # corresponding .py files have already been deleted. |
| 778 'name': 'remove_stale_pyc_files', | 781 'name': 'remove_stale_pyc_files', |
| 779 'pattern': 'src/tools/.*\\.py', | 782 'pattern': 'src/tools/.*\\.py', |
| 780 'action': [ | 783 'action': [ |
| 781 'python', | 784 'python', |
| 782 'src/tools/remove_stale_pyc_files.py', | 785 'src/tools/remove_stale_pyc_files.py', |
| 783 'src/tools', | 786 'src/tools', |
| 784 ], | 787 ], |
| 785 }, | 788 }, |
| 786 ] | 789 ] |
| OLD | NEW |