| 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 168 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 '+url', | 179 '+url', |
| 180 ] | 180 ] |
| 181 | 181 |
| 182 | 182 |
| 183 # checkdeps.py shouldn't check include paths for files in these dirs: | 183 # checkdeps.py shouldn't check include paths for files in these dirs: |
| 184 skip_child_includes = [ | 184 skip_child_includes = [ |
| 185 'sdch', | 185 'sdch', |
| 186 'skia', | 186 'skia', |
| 187 'testing', | 187 'testing', |
| 188 'third_party', | 188 'third_party', |
| 189 'sky', |
| 189 ] | 190 ] |
| 190 | 191 |
| 191 | 192 |
| 192 hooks = [ | 193 hooks = [ |
| 193 { | 194 { |
| 194 # This clobbers when necessary (based on get_landmines.py). It must be the | 195 # This clobbers when necessary (based on get_landmines.py). It must be the |
| 195 # first hook so that other things that get/generate into the output | 196 # first hook so that other things that get/generate into the output |
| 196 # directory will not subsequently be clobbered. | 197 # directory will not subsequently be clobbered. |
| 197 'name': 'landmines', | 198 'name': 'landmines', |
| 198 'pattern': '.', | 199 'pattern': '.', |
| (...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 # corresponding .py files have already been deleted. | 306 # corresponding .py files have already been deleted. |
| 306 'name': 'remove_stale_pyc_files', | 307 'name': 'remove_stale_pyc_files', |
| 307 'pattern': 'src/tools/.*\\.py', | 308 'pattern': 'src/tools/.*\\.py', |
| 308 'action': [ | 309 'action': [ |
| 309 'python', | 310 'python', |
| 310 'src/tools/remove_stale_pyc_files.py', | 311 'src/tools/remove_stale_pyc_files.py', |
| 311 'src/tools', | 312 'src/tools', |
| 312 ], | 313 ], |
| 313 }, | 314 }, |
| 314 ] | 315 ] |
| OLD | NEW |