| 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 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'src/breakpad/src': | 111 'src/breakpad/src': |
| 112 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '3a09bb0766
eba3ef1766a1617caf1bb5460de85e', # from svn revision 1409 | 112 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '3a09bb0766
eba3ef1766a1617caf1bb5460de85e', # from svn revision 1409 |
| 113 | 113 |
| 114 'src/buildtools': | 114 'src/buildtools': |
| 115 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), | 115 Var('chromium_git') + '/chromium/buildtools.git' + '@' + Var('buildtools_rev
ision'), |
| 116 | 116 |
| 117 'src/sdch/open-vcdiff': | 117 'src/sdch/open-vcdiff': |
| 118 Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21
611a94cd37bfc8c28ceb33', # from svn revision 41 | 118 Var('chromium_git') + '/external/open-vcdiff.git' + '@' + '438f2a5be6d809bc21
611a94cd37bfc8c28ceb33', # from svn revision 41 |
| 119 | 119 |
| 120 'src/testing/gtest': | 120 'src/testing/gtest': |
| 121 Var('chromium_git') + '/external/googletest.git' + '@' + '8245545b6dc9c4703e6
496d1efd19e975ad2b038', # from svn revision 700 | 121 Var('chromium_git') + '/external/googletest.git' + '@' + 'be1868139ffe0ccd0e8
e3b37292b84c821d9c8ad', # from svn revision 704 |
| 122 | 122 |
| 123 'src/testing/gmock': | 123 'src/testing/gmock': |
| 124 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 | 124 Var('chromium_git') + '/external/googlemock.git' + '@' + '29763965ab52f245652
99976b936d1265cb6a271', # from svn revision 501 |
| 125 | 125 |
| 126 'src/third_party/angle': | 126 'src/third_party/angle': |
| 127 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 127 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
| 128 | 128 |
| 129 'src/third_party/colorama/src': | 129 'src/third_party/colorama/src': |
| 130 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 130 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
| 131 | 131 |
| (...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 # corresponding .py files have already been deleted. | 794 # corresponding .py files have already been deleted. |
| 795 'name': 'remove_stale_pyc_files', | 795 'name': 'remove_stale_pyc_files', |
| 796 'pattern': 'src/tools/.*\\.py', | 796 'pattern': 'src/tools/.*\\.py', |
| 797 'action': [ | 797 'action': [ |
| 798 'python', | 798 'python', |
| 799 'src/tools/remove_stale_pyc_files.py', | 799 'src/tools/remove_stale_pyc_files.py', |
| 800 'src/tools', | 800 'src/tools', |
| 801 ], | 801 ], |
| 802 }, | 802 }, |
| 803 ] | 803 ] |
| OLD | NEW |