| 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 | 460 |
| 461 'src/third_party/elfutils/src': | 461 'src/third_party/elfutils/src': |
| 462 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 462 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
| 463 | 463 |
| 464 'src/third_party/httpcomponents-client': | 464 'src/third_party/httpcomponents-client': |
| 465 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', | 465 Var('chromium_git') + '/chromium/deps/httpcomponents-client.git' + '@' + '2
85c4dafc5de0e853fa845dce5773e223219601c', |
| 466 | 466 |
| 467 'src/third_party/httpcomponents-core': | 467 'src/third_party/httpcomponents-core': |
| 468 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', | 468 Var('chromium_git') + '/chromium/deps/httpcomponents-core.git' + '@' + '9f7
180a96f8fa5cab23f793c14b413356d419e62', |
| 469 | 469 |
| 470 'src/third_party/jarjar': | |
| 471 Var('chromium_git') + '/chromium/deps/jarjar.git' + '@' + '2e1ead4c68c450e0
b77fe49e3f9137842b8b6920', | |
| 472 | |
| 473 'src/third_party/jsr-305/src': | 470 'src/third_party/jsr-305/src': |
| 474 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', | 471 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f7220a
f6d5df2d3210e3bfc0919', |
| 475 | 472 |
| 476 'src/third_party/junit/src': | 473 'src/third_party/junit/src': |
| 477 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', | 474 Var('chromium_git') + '/external/junit.git' + '@' + '45a44647e7306262162e1
346b750c3209019f2e1', |
| 478 | 475 |
| 479 'src/third_party/mockito/src': | 476 'src/third_party/mockito/src': |
| 480 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', | 477 Var('chromium_git') + '/external/mockito/mockito.git' + '@' + '4d987dcd923
b81525c42b1333e6c4e07440776c3', |
| 481 | 478 |
| 482 'src/third_party/netty-tcnative/src': | 479 'src/third_party/netty-tcnative/src': |
| (...skipping 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 853 'src/build/android/download_doclava.py', | 850 'src/build/android/download_doclava.py', |
| 854 ], | 851 ], |
| 855 }, | 852 }, |
| 856 { | 853 { |
| 857 # A change to a .gyp, .gypi, or to GYP itself should run the generator. | 854 # A change to a .gyp, .gypi, or to GYP itself should run the generator. |
| 858 'name': 'gyp', | 855 'name': 'gyp', |
| 859 'pattern': '.', | 856 'pattern': '.', |
| 860 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], | 857 'action': ['python', 'src/build/gyp_chromium', '--running-as-hook'], |
| 861 }, | 858 }, |
| 862 ] | 859 ] |
| OLD | NEW |