| 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 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 210 'action': ['python', 'src/build/linux/install-arm-sysroot.py', | 210 'action': ['python', 'src/build/linux/install-arm-sysroot.py', |
| 211 '--linux-only'], | 211 '--linux-only'], |
| 212 }, | 212 }, |
| 213 { | 213 { |
| 214 # Pull clang if needed or requested via GYP_DEFINES. | 214 # Pull clang if needed or requested via GYP_DEFINES. |
| 215 'name': 'clang', | 215 'name': 'clang', |
| 216 'pattern': '.', | 216 'pattern': '.', |
| 217 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], | 217 'action': ['python', 'src/tools/clang/scripts/update.py', '--if-needed'], |
| 218 }, | 218 }, |
| 219 { | 219 { |
| 220 # Update the Windows toolchain if necessary. |
| 221 'name': 'win_toolchain', |
| 222 'pattern': '.', |
| 223 'action': ['python', 'src/build/vs_toolchain.py', 'update'], |
| 224 }, |
| 225 { |
| 220 # Update LASTCHANGE. This is also run by export_tarball.py in | 226 # Update LASTCHANGE. This is also run by export_tarball.py in |
| 221 # src/tools/export_tarball - please keep them in sync. | 227 # src/tools/export_tarball - please keep them in sync. |
| 222 'name': 'lastchange', | 228 'name': 'lastchange', |
| 223 'pattern': '.', | 229 'pattern': '.', |
| 224 'action': ['python', 'src/build/util/lastchange.py', | 230 'action': ['python', 'src/build/util/lastchange.py', |
| 225 '-o', 'src/build/util/LASTCHANGE'], | 231 '-o', 'src/build/util/LASTCHANGE'], |
| 226 }, | 232 }, |
| 227 # Pull GN binaries. This needs to be before running GYP below. | 233 # Pull GN binaries. This needs to be before running GYP below. |
| 228 { | 234 { |
| 229 'name': 'gn_linux32', | 235 'name': 'gn_linux32', |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 # corresponding .py files have already been deleted. | 304 # corresponding .py files have already been deleted. |
| 299 'name': 'remove_stale_pyc_files', | 305 'name': 'remove_stale_pyc_files', |
| 300 'pattern': 'src/tools/.*\\.py', | 306 'pattern': 'src/tools/.*\\.py', |
| 301 'action': [ | 307 'action': [ |
| 302 'python', | 308 'python', |
| 303 'src/tools/remove_stale_pyc_files.py', | 309 'src/tools/remove_stale_pyc_files.py', |
| 304 'src/tools', | 310 'src/tools', |
| 305 ], | 311 ], |
| 306 }, | 312 }, |
| 307 ] | 313 ] |
| OLD | NEW |