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 439 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
450 'src/third_party/stp/src': | 450 'src/third_party/stp/src': |
451 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', | 451 Var('chromium_git') + '/external/github.com/stp/stp.git' + '@' + 'fc94a5992
07752ab4d64048204f0c88494811b62', |
452 }, | 452 }, |
453 'android': { | 453 'android': { |
454 'src/third_party/android_protobuf/src': | 454 'src/third_party/android_protobuf/src': |
455 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', | 455 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '94f522f907e
3f34f70d9e7816b947e62fddbb267', |
456 | 456 |
457 # Whenever you roll this please also change frameworks/webview in | 457 # Whenever you roll this please also change frameworks/webview in |
458 # src/android_webview/buildbot/aosp_manifest.xml to point to the same revisi
on. | 458 # src/android_webview/buildbot/aosp_manifest.xml to point to the same revisi
on. |
459 'src/third_party/android_webview_glue/src': | 459 'src/third_party/android_webview_glue/src': |
460 Var('chromium_git') + '/external/android_webview_glue.git' + '@' + '4e0495e
d16a0da2afa1d16bc34a71345172a258f', | 460 Var('chromium_git') + '/external/android_webview_glue.git' + '@' + 'a770a09
ca3346d8ec7cb4cdff90aaf83c8d2c5ff', |
461 | 461 |
462 'src/third_party/android_tools': | 462 'src/third_party/android_tools': |
463 Var('chromium_git') + '/android_tools.git' + '@' + '4f723e2a5fa5b7b8a198072
ac19b92344be2b271', | 463 Var('chromium_git') + '/android_tools.git' + '@' + '4f723e2a5fa5b7b8a198072
ac19b92344be2b271', |
464 | 464 |
465 'src/third_party/apache-mime4j': | 465 'src/third_party/apache-mime4j': |
466 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 466 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
467 | 467 |
468 'src/third_party/appurify-python/src': | 468 'src/third_party/appurify-python/src': |
469 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 469 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
470 | 470 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
784 # corresponding .py files have already been deleted. | 784 # corresponding .py files have already been deleted. |
785 'name': 'remove_stale_pyc_files', | 785 'name': 'remove_stale_pyc_files', |
786 'pattern': 'src/tools/.*\\.py', | 786 'pattern': 'src/tools/.*\\.py', |
787 'action': [ | 787 'action': [ |
788 'python', | 788 'python', |
789 'src/tools/remove_stale_pyc_files.py', | 789 'src/tools/remove_stale_pyc_files.py', |
790 'src/tools', | 790 'src/tools', |
791 ], | 791 ], |
792 }, | 792 }, |
793 ] | 793 ] |
OLD | NEW |