| 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 468 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 479 | 479 |
| 480 'src/third_party/robolectric/lib': | 480 'src/third_party/robolectric/lib': |
| 481 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', | 481 Var('chromium_git') + '/chromium/third_party/robolectric.git' + '@' + '6b6
3c99a8b6967acdb42cbed0adb067c80efc810', |
| 482 | 482 |
| 483 'src/third_party/lss': | 483 'src/third_party/lss': |
| 484 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), | 484 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Va
r('lss_revision'), |
| 485 | 485 |
| 486 'src/third_party/requests/src': | 486 'src/third_party/requests/src': |
| 487 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', | 487 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 488 | 488 |
| 489 'src/third_party/cardboard-java/src': |
| 490 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.g
it' + '@' + 'c2a953d093ef7b29b9b0a113c7d5d104fe5d188d', |
| 491 |
| 489 }, | 492 }, |
| 490 } | 493 } |
| 491 | 494 |
| 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', |
| 498 '+ipc', | 501 '+ipc', |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 # corresponding .py files have already been deleted. | 789 # corresponding .py files have already been deleted. |
| 787 'name': 'remove_stale_pyc_files', | 790 'name': 'remove_stale_pyc_files', |
| 788 'pattern': 'src/tools/.*\\.py', | 791 'pattern': 'src/tools/.*\\.py', |
| 789 'action': [ | 792 'action': [ |
| 790 'python', | 793 'python', |
| 791 'src/tools/remove_stale_pyc_files.py', | 794 'src/tools/remove_stale_pyc_files.py', |
| 792 'src/tools', | 795 'src/tools', |
| 793 ], | 796 ], |
| 794 }, | 797 }, |
| 795 ] | 798 ] |
| OLD | NEW |