| 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 383 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 394 | 394 |
| 395 # Used for embedded builds. CrOS & Linux use the system version. | 395 # Used for embedded builds. CrOS & Linux use the system version. |
| 396 'src/third_party/fontconfig/src': | 396 'src/third_party/fontconfig/src': |
| 397 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 397 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
| 398 | 398 |
| 399 'src/third_party/stp/src': | 399 'src/third_party/stp/src': |
| 400 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', | 400 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', |
| 401 }, | 401 }, |
| 402 'android': { | 402 'android': { |
| 403 'src/third_party/android_protobuf/src': | 403 'src/third_party/android_protobuf/src': |
| 404 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', | 404 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
| 405 | 405 |
| 406 'src/third_party/android_tools': | 406 'src/third_party/android_tools': |
| 407 Var('chromium_git') + '/android_tools.git' + '@' + 'a3afc68f31ed9b32954954d
a95c855ee73820bd1', | 407 Var('chromium_git') + '/android_tools.git' + '@' + 'a3afc68f31ed9b32954954d
a95c855ee73820bd1', |
| 408 | 408 |
| 409 'src/third_party/apache-mime4j': | 409 'src/third_party/apache-mime4j': |
| 410 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 410 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 411 | 411 |
| 412 'src/third_party/appurify-python/src': | 412 'src/third_party/appurify-python/src': |
| 413 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 413 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 414 | 414 |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 769 # corresponding .py files have already been deleted. | 769 # corresponding .py files have already been deleted. |
| 770 'name': 'remove_stale_pyc_files', | 770 'name': 'remove_stale_pyc_files', |
| 771 'pattern': 'src/tools/.*\\.py', | 771 'pattern': 'src/tools/.*\\.py', |
| 772 'action': [ | 772 'action': [ |
| 773 'python', | 773 'python', |
| 774 'src/tools/remove_stale_pyc_files.py', | 774 'src/tools/remove_stale_pyc_files.py', |
| 775 'src/tools', | 775 'src/tools', |
| 776 ], | 776 ], |
| 777 }, | 777 }, |
| 778 ] | 778 ] |
| OLD | NEW |