| 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 406 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 417 | 417 |
| 418 'src/third_party/android_tools': | 418 'src/third_party/android_tools': |
| 419 Var('chromium_git') + '/android_tools.git' + '@' + 'a3afc68f31ed9b32954954d
a95c855ee73820bd1', | 419 Var('chromium_git') + '/android_tools.git' + '@' + 'a3afc68f31ed9b32954954d
a95c855ee73820bd1', |
| 420 | 420 |
| 421 'src/third_party/apache-mime4j': | 421 'src/third_party/apache-mime4j': |
| 422 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 422 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 423 | 423 |
| 424 'src/third_party/appurify-python/src': | 424 'src/third_party/appurify-python/src': |
| 425 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 425 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 426 | 426 |
| 427 'src/third_party/errorprone/lib': |
| 428 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '6c66
e56c0f9d750aef83190466df834f9d6af8ab', |
| 429 |
| 427 'src/third_party/findbugs': | 430 'src/third_party/findbugs': |
| 428 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', | 431 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', |
| 429 | 432 |
| 430 'src/third_party/freetype-android/src': | 433 'src/third_party/freetype-android/src': |
| 431 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'd10
28db70bea988d1022e4d463de66581c696160', | 434 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'd10
28db70bea988d1022e4d463de66581c696160', |
| 432 | 435 |
| 433 'src/third_party/elfutils/src': | 436 'src/third_party/elfutils/src': |
| 434 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 437 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
| 435 | 438 |
| 436 'src/third_party/httpcomponents-client': | 439 'src/third_party/httpcomponents-client': |
| (...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 781 # corresponding .py files have already been deleted. | 784 # corresponding .py files have already been deleted. |
| 782 'name': 'remove_stale_pyc_files', | 785 'name': 'remove_stale_pyc_files', |
| 783 'pattern': 'src/tools/.*\\.py', | 786 'pattern': 'src/tools/.*\\.py', |
| 784 'action': [ | 787 'action': [ |
| 785 'python', | 788 'python', |
| 786 'src/tools/remove_stale_pyc_files.py', | 789 'src/tools/remove_stale_pyc_files.py', |
| 787 'src/tools', | 790 'src/tools', |
| 788 ], | 791 ], |
| 789 }, | 792 }, |
| 790 ] | 793 ] |
| OLD | NEW |