| OLD | NEW |
| 1 # This file is automatically processed to create .DEPS.git which is the file | 1 # This file is automatically processed to create .DEPS.git which is the file |
| 2 # that gclient uses under git. | 2 # that gclient uses under git. |
| 3 # | 3 # |
| 4 # See http://code.google.com/p/chromium/wiki/UsingGit | 4 # See http://code.google.com/p/chromium/wiki/UsingGit |
| 5 # | 5 # |
| 6 # To test manually, run: | 6 # To test manually, run: |
| 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> | 7 # python tools/deps2git/deps2git.py -o .DEPS.git -w <gclientdir> |
| 8 # where <gcliendir> is the absolute path to the directory containing the | 8 # where <gcliendir> is the absolute path to the directory containing the |
| 9 # .gclient file (the parent of 'src'). | 9 # .gclient file (the parent of 'src'). |
| 10 # | 10 # |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'src/third_party/webdriver/pylib': | 204 'src/third_party/webdriver/pylib': |
| 205 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', | 205 Var('chromium_git') + '/external/selenium/py.git' + '@' + '5fd78261a75fe08d2
7ca4835fb6c5ce4b42275bd', |
| 206 | 206 |
| 207 'src/third_party/libvpx': | 207 'src/third_party/libvpx': |
| 208 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), | 208 Var('chromium_git') + '/chromium/deps/libvpx.git' + '@' + Var('libvpx_revisi
on'), |
| 209 | 209 |
| 210 'src/third_party/ffmpeg': | 210 'src/third_party/ffmpeg': |
| 211 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '98ca32e50f6
e38447bc81705d0689ebceb6ac649', | 211 Var('chromium_git') + '/chromium/third_party/ffmpeg.git' + '@' + '98ca32e50f6
e38447bc81705d0689ebceb6ac649', |
| 212 | 212 |
| 213 'src/third_party/libjingle/source/talk': | 213 'src/third_party/libjingle/source/talk': |
| 214 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '9460de62505
246d2f0a8b89319b946457c9ef086', | 214 Var('chromium_git') + '/external/webrtc/trunk/talk.git' + '@' + '9426b888d5e
248adb87c2c2dcb4d4b95e14d1226', |
| 215 | 215 |
| 216 'src/third_party/usrsctp/usrsctplib': | 216 'src/third_party/usrsctp/usrsctplib': |
| 217 Var('chromium_git') + '/external/usrsctplib.git' + '@' + 'e6e18333da18c5bb7d
e7e9189e53403e2ffa7023', | 217 Var('chromium_git') + '/external/usrsctplib.git' + '@' + 'e6e18333da18c5bb7d
e7e9189e53403e2ffa7023', |
| 218 | 218 |
| 219 'src/third_party/libsrtp': | 219 'src/third_party/libsrtp': |
| 220 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '662d81de5cbf3667f
1baaafe051b8b4ab0b12fe2', | 220 Var('chromium_git') + '/chromium/deps/libsrtp.git' + '@' + '662d81de5cbf3667f
1baaafe051b8b4ab0b12fe2', |
| 221 | 221 |
| 222 'src/third_party/speex': | 222 'src/third_party/speex': |
| 223 Var('chromium_git') + '/chromium/deps/speex.git' + '@' + '5260621c36c227209c7
ba64ea71ca3418cf9e2b4', | 223 Var('chromium_git') + '/chromium/deps/speex.git' + '@' + '5260621c36c227209c7
ba64ea71ca3418cf9e2b4', |
| 224 | 224 |
| (...skipping 567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 792 # corresponding .py files have already been deleted. | 792 # corresponding .py files have already been deleted. |
| 793 'name': 'remove_stale_pyc_files', | 793 'name': 'remove_stale_pyc_files', |
| 794 'pattern': 'src/tools/.*\\.py', | 794 'pattern': 'src/tools/.*\\.py', |
| 795 'action': [ | 795 'action': [ |
| 796 'python', | 796 'python', |
| 797 'src/tools/remove_stale_pyc_files.py', | 797 'src/tools/remove_stale_pyc_files.py', |
| 798 'src/tools', | 798 'src/tools', |
| 799 ], | 799 ], |
| 800 }, | 800 }, |
| 801 ] | 801 ] |
| OLD | NEW |