| 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 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 'action': ['python', 'src/build/linux/install-arm-sysroot.py', | 228 'action': ['python', 'src/build/linux/install-arm-sysroot.py', |
| 229 '--linux-only'], | 229 '--linux-only'], |
| 230 }, | 230 }, |
| 231 { | 231 { |
| 232 # Pull clang if needed or requested via GYP_DEFINES. | 232 # Pull clang if needed or requested via GYP_DEFINES. |
| 233 'name': 'clang', | 233 'name': 'clang', |
| 234 'pattern': '.', | 234 'pattern': '.', |
| 235 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 235 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 236 }, | 236 }, |
| 237 { | 237 { |
| 238 # Pull dart sdk if needed |
| 239 'name': 'dart', |
| 240 'pattern': '.', |
| 241 'action': ['python', 'src/tools/dart/update.py'], |
| 242 }, |
| 243 { |
| 238 # Update the Windows toolchain if necessary. | 244 # Update the Windows toolchain if necessary. |
| 239 'name': 'win_toolchain', | 245 'name': 'win_toolchain', |
| 240 'pattern': '.', | 246 'pattern': '.', |
| 241 'action': ['python', 'src/build/vs_toolchain.py', 'update'], | 247 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
| 242 }, | 248 }, |
| 243 { | 249 { |
| 244 # Update LASTCHANGE. This is also run by export_tarball.py in | 250 # Update LASTCHANGE. This is also run by export_tarball.py in |
| 245 # src/tools/export_tarball - please keep them in sync. | 251 # src/tools/export_tarball - please keep them in sync. |
| 246 'name': 'lastchange', | 252 'name': 'lastchange', |
| 247 'pattern': '.', | 253 'pattern': '.', |
| (...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 332 # corresponding .py files have already been deleted. | 338 # corresponding .py files have already been deleted. |
| 333 'name': 'remove_stale_pyc_files', | 339 'name': 'remove_stale_pyc_files', |
| 334 'pattern': 'src/tools/.*\\.py', | 340 'pattern': 'src/tools/.*\\.py', |
| 335 'action': [ | 341 'action': [ |
| 336 'python', | 342 'python', |
| 337 'src/tools/remove_stale_pyc_files.py', | 343 'src/tools/remove_stale_pyc_files.py', |
| 338 'src/tools', | 344 'src/tools', |
| 339 ], | 345 ], |
| 340 }, | 346 }, |
| 341 ] | 347 ] |
| OLD | NEW |