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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 'src/testing/gmock': | 116 'src/testing/gmock': |
117 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 | 117 Var('chromium_git') + '/external/googlemock.git' + '@' + '0421b6f358139f02e10
2c9c332ce19a33faf75be', # from svn revision 566 |
118 | 118 |
119 'src/third_party/angle': | 119 'src/third_party/angle': |
120 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), | 120 Var('chromium_git') + '/angle/angle.git' + '@' + Var('angle_revision'), |
121 | 121 |
122 'src/third_party/colorama/src': | 122 'src/third_party/colorama/src': |
123 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', | 123 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d27
89ecbd7e8db2e18e6b8', |
124 | 124 |
125 'src/third_party/crashpad/crashpad': | 125 'src/third_party/crashpad/crashpad': |
126 Var('chromium_git') + '/crashpad/crashpad.git' + '@' + '5069c2903a1be6e717c52
6595c85f8736033e5e8', | 126 Var('chromium_git') + '/crashpad/crashpad.git' + '@' + '595803e1be18aa789ba56
1aa06db73cfc3c2e7a2', |
127 | 127 |
128 'src/third_party/WebKit': | 128 'src/third_party/WebKit': |
129 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), | 129 Var('chromium_git') + '/chromium/blink.git' + '@' + Var('webkit_revision'), |
130 | 130 |
131 'src/third_party/icu': | 131 'src/third_party/icu': |
132 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '6b3ce817f8e828c3b7a57
7d2395f0882eb56ef18', | 132 Var('chromium_git') + '/chromium/deps/icu.git' + '@' + '6b3ce817f8e828c3b7a57
7d2395f0882eb56ef18', |
133 | 133 |
134 'src/third_party/libexif/sources': | 134 'src/third_party/libexif/sources': |
135 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', | 135 Var('chromium_git') + '/chromium/deps/libexif/sources.git' + '@' + 'ed98343da
abd7b4497f97fda972e132e6877c48a', |
136 | 136 |
(...skipping 662 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # migration completes (let's say Sep 1 2014). | 799 # migration completes (let's say Sep 1 2014). |
800 'name': 'check_git_config', | 800 'name': 'check_git_config', |
801 'pattern': '.', | 801 'pattern': '.', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/check_git_config.py', | 804 'src/tools/check_git_config.py', |
805 '--running-as-hook', | 805 '--running-as-hook', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |