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 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
180 'src/third_party/bidichecker': | 180 'src/third_party/bidichecker': |
181 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', | 181 Var('chromium_git') + '/external/bidichecker/lib.git' + '@' + '97f2aa645b74c
28c57eca56992235c79850fa9e0', |
182 | 182 |
183 'src/third_party/webgl/src': | 183 'src/third_party/webgl/src': |
184 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '421bc6095d1
065bb6057e33fbab737b35d39930d', | 184 Var('chromium_git') + '/external/khronosgroup/webgl.git' + '@' + '421bc6095d1
065bb6057e33fbab737b35d39930d', |
185 | 185 |
186 'src/third_party/webdriver/pylib': | 186 'src/third_party/webdriver/pylib': |
187 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 187 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
188 | 188 |
189 'src/third_party/libvpx_new/source/libvpx': | 189 'src/third_party/libvpx_new/source/libvpx': |
190 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'dc9d36c0a6c749616d5543aa20
8864d7b0181fea', | 190 Var('chromium_git') + '/webm/libvpx.git' + '@' + '9645cd4826de5a469e163838b9
97fccfd7907b91', |
191 | 191 |
192 'src/third_party/ffmpeg': | 192 'src/third_party/ffmpeg': |
193 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'd2733b2c43f
65f0e779d5d014777fb8ea1e89873', | 193 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + 'd2733b2c43f
65f0e779d5d014777fb8ea1e89873', |
194 | 194 |
195 'src/third_party/libjingle/source/talk': | 195 'src/third_party/libjingle/source/talk': |
196 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1a5fe300d4f
3522a5f35bd746f6a3a09f5e0a0c5', # commit position 10439 | 196 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '1a5fe300d4f
3522a5f35bd746f6a3a09f5e0a0c5', # commit position 10439 |
197 | 197 |
198 'src/third_party/usrsctp/usrsctplib': | 198 'src/third_party/usrsctp/usrsctplib': |
199 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 | 199 Var('chromium_git') + '/external/usrsctplib.git' + '@' + '36444a999739e9e408
f8f587cb4c3ffeef2e50ac', # from svn revision 9215 |
200 | 200 |
(...skipping 618 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
819 'pattern': '.', | 819 'pattern': '.', |
820 'action': [ | 820 'action': [ |
821 'python', | 821 'python', |
822 'src/tools/check_git_config.py', | 822 'src/tools/check_git_config.py', |
823 '--running-as-hook', | 823 '--running-as-hook', |
824 ], | 824 ], |
825 }, | 825 }, |
826 ] | 826 ] |
827 | 827 |
828 | 828 |
OLD | NEW |