| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 435 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 436 | 436 |
| 437 'src/third_party/stp/src': | 437 'src/third_party/stp/src': |
| 438 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', | 438 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', |
| 439 }, | 439 }, |
| 440 'android': { | 440 'android': { |
| 441 'src/third_party/android_protobuf/src': | 441 'src/third_party/android_protobuf/src': |
| 442 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', | 442 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', |
| 443 | 443 |
| 444 'src/third_party/android_tools': | 444 'src/third_party/android_tools': |
| 445 Var('chromium_git') + '/android_tools.git' + '@' + 'bba2299128013f79b900983
f405a65d9b6bdb2fa', | 445 Var('chromium_git') + '/android_tools.git' + '@' + '7200281446186c7192cb02f
54dc2b38e02d705e5', |
| 446 | 446 |
| 447 'src/third_party/apache-mime4j': | 447 'src/third_party/apache-mime4j': |
| 448 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 448 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 449 | 449 |
| 450 'src/third_party/appurify-python/src': | 450 'src/third_party/appurify-python/src': |
| 451 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 451 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 452 | 452 |
| 453 'src/third_party/findbugs': | 453 'src/third_party/findbugs': |
| 454 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', | 454 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', |
| 455 | 455 |
| (...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 786 # corresponding .py files have already been deleted. | 786 # corresponding .py files have already been deleted. |
| 787 'name': 'remove_stale_pyc_files', | 787 'name': 'remove_stale_pyc_files', |
| 788 'pattern': 'src/tools/.*\\.py', | 788 'pattern': 'src/tools/.*\\.py', |
| 789 'action': [ | 789 'action': [ |
| 790 'python', | 790 'python', |
| 791 'src/tools/remove_stale_pyc_files.py', | 791 'src/tools/remove_stale_pyc_files.py', |
| 792 'src/tools', | 792 'src/tools', |
| 793 ], | 793 ], |
| 794 }, | 794 }, |
| 795 ] | 795 ] |
| OLD | NEW |