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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 | 450 |
451 'src/third_party/junit/src': | 451 'src/third_party/junit/src': |
452 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', | 452 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', |
453 | 453 |
454 'src/third_party/mockito/src': | 454 'src/third_party/mockito/src': |
455 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'ed99a52e94a
84bd7c467f2443b475a22fcc6ba8e', | 455 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'ed99a52e94a
84bd7c467f2443b475a22fcc6ba8e', |
456 | 456 |
457 'src/third_party/robolectric/lib': | 457 'src/third_party/robolectric/lib': |
458 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', | 458 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', |
459 | 459 |
| 460 'src/third_party/ub-uiautomator/lib': |
| 461 Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
e6f02481bada8bdbdfdd7987dd6e648c44a3adcb', |
| 462 |
460 'src/third_party/lss': | 463 'src/third_party/lss': |
461 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 464 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
462 | 465 |
463 'src/third_party/requests/src': | 466 'src/third_party/requests/src': |
464 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 467 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
465 | 468 |
466 }, | 469 }, |
467 } | 470 } |
468 | 471 |
469 | 472 |
(...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 # corresponding .py files have already been deleted. | 787 # corresponding .py files have already been deleted. |
785 'name': 'remove_stale_pyc_files', | 788 'name': 'remove_stale_pyc_files', |
786 'pattern': 'src/tools/.*\\.py', | 789 'pattern': 'src/tools/.*\\.py', |
787 'action': [ | 790 'action': [ |
788 'python', | 791 'python', |
789 'src/tools/remove_stale_pyc_files.py', | 792 'src/tools/remove_stale_pyc_files.py', |
790 'src/tools', | 793 'src/tools', |
791 ], | 794 ], |
792 }, | 795 }, |
793 ] | 796 ] |
OLD | NEW |