| 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 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 178 '+third_party/icu/source/i18n/unicode', | 178 '+third_party/icu/source/i18n/unicode', |
| 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 'examples', | 185 'examples', |
| 186 'sdch', | 186 'sdch', |
| 187 'services', | 187 'services', |
| 188 'shell', |
| 188 'skia', | 189 'skia', |
| 189 'sky', | 190 'sky', |
| 190 'testing', | 191 'testing', |
| 191 'third_party', | 192 'third_party', |
| 192 ] | 193 ] |
| 193 | 194 |
| 194 | 195 |
| 195 hooks = [ | 196 hooks = [ |
| 196 { | 197 { |
| 197 # This clobbers when necessary (based on get_landmines.py). It must be the | 198 # This clobbers when necessary (based on get_landmines.py). It must be the |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 308 # corresponding .py files have already been deleted. | 309 # corresponding .py files have already been deleted. |
| 309 'name': 'remove_stale_pyc_files', | 310 'name': 'remove_stale_pyc_files', |
| 310 'pattern': 'src/tools/.*\\.py', | 311 'pattern': 'src/tools/.*\\.py', |
| 311 'action': [ | 312 'action': [ |
| 312 'python', | 313 'python', |
| 313 'src/tools/remove_stale_pyc_files.py', | 314 'src/tools/remove_stale_pyc_files.py', |
| 314 'src/tools', | 315 'src/tools', |
| 315 ], | 316 ], |
| 316 }, | 317 }, |
| 317 ] | 318 ] |
| OLD | NEW |