| 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' + '@' + 'b44c5cf639d179eb5016a226fb
a06a16216f72a0', | 190 Var('chromium_git') + '/webm/libvpx.git' + '@' + 'f4af1a9af48c972da1d5d8f04b
84fed1017a25b5', |
| 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' + '@' + '2e1af43faf9
276fe59c3f56bc8ee2cac7abdbd4c', # commit position 10372 | 196 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '2e1af43faf9
276fe59c3f56bc8ee2cac7abdbd4c', # commit position 10372 |
| 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 |