| 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 141 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 152 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', | 152 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', |
| 153 | 153 |
| 154 'src/third_party/android_tools': | 154 'src/third_party/android_tools': |
| 155 Var('chromium_git') + '/android_tools.git' + '@' + '8fe116f93f350dcf73c6fe7
0db893985bf1b91d5', | 155 Var('chromium_git') + '/android_tools.git' + '@' + '8fe116f93f350dcf73c6fe7
0db893985bf1b91d5', |
| 156 | 156 |
| 157 'src/third_party/appurify-python/src': | 157 'src/third_party/appurify-python/src': |
| 158 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 158 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 159 | 159 |
| 160 'src/third_party/freetype': | 160 'src/third_party/freetype': |
| 161 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a
2b9955b49034a51dfbc8bf9f4e9d312149cecac', | 161 Var('chromium_git') + '/chromium/src/third_party/freetype.git' + '@' + 'a
2b9955b49034a51dfbc8bf9f4e9d312149cecac', |
| 162 |
| 163 'src/third_party/requests/src': |
| 164 Var('chromium_git') + '/external/github.com/kennethreitz/requests.git' + '
@' + 'f172b30356d821d180fa4ecfa3e71c7274a32de4', |
| 162 }, | 165 }, |
| 163 'win': { | 166 'win': { |
| 164 'src/third_party/nss': | 167 'src/third_party/nss': |
| 165 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision
'), | 168 Var('chromium_git') + '/chromium/deps/nss.git' + '@' + Var('nss_revision
'), |
| 166 'src/third_party/bison': | 169 'src/third_party/bison': |
| 167 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affd
d5464ee2b224c2df649c6e26c3', | 170 Var('chromium_git') + '/chromium/deps/bison.git' + '@' + '083c9a45e4affd
d5464ee2b224c2df649c6e26c3', |
| 168 'src/third_party/gperf': | 171 'src/third_party/gperf': |
| 169 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944
9770443fb06da49b5a1e5d33c1', | 172 Var('chromium_git') + '/chromium/deps/gperf.git' + '@' + 'd892d79f64f944
9770443fb06da49b5a1e5d33c1', |
| 170 } | 173 } |
| 171 } | 174 } |
| (...skipping 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 # corresponding .py files have already been deleted. | 315 # corresponding .py files have already been deleted. |
| 313 'name': 'remove_stale_pyc_files', | 316 'name': 'remove_stale_pyc_files', |
| 314 'pattern': 'src/tools/.*\\.py', | 317 'pattern': 'src/tools/.*\\.py', |
| 315 'action': [ | 318 'action': [ |
| 316 'python', | 319 'python', |
| 317 'src/tools/remove_stale_pyc_files.py', | 320 'src/tools/remove_stale_pyc_files.py', |
| 318 'src/tools', | 321 'src/tools', |
| 319 ], | 322 ], |
| 320 }, | 323 }, |
| 321 ] | 324 ] |
| OLD | NEW |