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 449 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
460 'src/third_party/apache-mime4j': | 460 'src/third_party/apache-mime4j': |
461 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 461 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
462 | 462 |
463 'src/third_party/appurify-python/src': | 463 'src/third_party/appurify-python/src': |
464 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 464 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
465 | 465 |
466 'src/third_party/findbugs': | 466 'src/third_party/findbugs': |
467 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', | 467 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', |
468 | 468 |
469 'src/third_party/freetype': | 469 'src/third_party/freetype': |
470 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a2b
9955b49034a51dfbc8bf9f4e9d312149cecac', | 470 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'fd6
919ac23f74b876c209aba5eaa2be662086391', |
471 | 471 |
472 'src/third_party/elfutils/src': | 472 'src/third_party/elfutils/src': |
473 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 473 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
474 | 474 |
475 'src/third_party/httpcomponents-client': | 475 'src/third_party/httpcomponents-client': |
476 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 476 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
477 | 477 |
478 'src/third_party/httpcomponents-core': | 478 'src/third_party/httpcomponents-core': |
479 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 479 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
480 | 480 |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 # corresponding .py files have already been deleted. | 785 # corresponding .py files have already been deleted. |
786 'name': 'remove_stale_pyc_files', | 786 'name': 'remove_stale_pyc_files', |
787 'pattern': 'src/tools/.*\\.py', | 787 'pattern': 'src/tools/.*\\.py', |
788 'action': [ | 788 'action': [ |
789 'python', | 789 'python', |
790 'src/tools/remove_stale_pyc_files.py', | 790 'src/tools/remove_stale_pyc_files.py', |
791 'src/tools', | 791 'src/tools', |
792 ], | 792 ], |
793 }, | 793 }, |
794 ] | 794 ] |
OLD | NEW |