| 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 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 404 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 405 | 405 |
| 406 'src/third_party/stp/src': | 406 'src/third_party/stp/src': |
| 407 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', | 407 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', |
| 408 }, | 408 }, |
| 409 'android': { | 409 'android': { |
| 410 'src/third_party/android_protobuf/src': | 410 'src/third_party/android_protobuf/src': |
| 411 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 411 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
| 412 | 412 |
| 413 'src/third_party/android_tools': | 413 'src/third_party/android_tools': |
| 414 Var('chromium_git') + '/android_tools.git' + '@' + '5722f90e94d02a8dc17b6ed
b93ead6839d5afcee', | 414 Var('chromium_git') + '/android_tools.git' + '@' + '6957ab01c5fcfc586caab8e
4b4e4b7cdf18ada9e', |
| 415 | 415 |
| 416 'src/third_party/apache-mime4j': | 416 'src/third_party/apache-mime4j': |
| 417 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 417 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 418 | 418 |
| 419 'src/third_party/appurify-python/src': | 419 'src/third_party/appurify-python/src': |
| 420 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 420 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 421 | 421 |
| 422 'src/third_party/cardboard-java/src': | 422 'src/third_party/cardboard-java/src': |
| 423 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', | 423 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', |
| 424 | 424 |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 801 'pattern': '.', | 801 'pattern': '.', |
| 802 'action': [ | 802 'action': [ |
| 803 'python', | 803 'python', |
| 804 'src/tools/check_git_config.py', | 804 'src/tools/check_git_config.py', |
| 805 '--running-as-hook', | 805 '--running-as-hook', |
| 806 ], | 806 ], |
| 807 }, | 807 }, |
| 808 ] | 808 ] |
| 809 | 809 |
| 810 | 810 |
| OLD | NEW |