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 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
196 # checkdeps.py shouldn't check include paths for files in these dirs: | 196 # checkdeps.py shouldn't check include paths for files in these dirs: |
197 skip_child_includes = [ | 197 skip_child_includes = [ |
198 'examples', | 198 'examples', |
199 'sdch', | 199 'sdch', |
200 'services', | 200 'services', |
201 'shell', | 201 'shell', |
202 'skia', | 202 'skia', |
203 'sky', | 203 'sky', |
204 'testing', | 204 'testing', |
205 'third_party', | 205 'third_party', |
206 | |
207 # These directories are copied in from Chromium; however, the top-level | |
208 # include_rules in Mojo are more restrictive than in Chromium, so checkdeps | |
blundell
2015/01/23 13:25:12
FYI, the specific problem here is the removal of "
| |
209 # won't necessarily pass on them in Mojo. | |
210 'base', | |
211 'build', | |
212 'cc', | |
213 'gin', | |
214 'gpu', | |
215 'mojo/services/network', | |
216 'net', | |
217 'sandbox/linux', | |
218 'sdch', | |
219 'skia', | |
220 'ui/gl', | |
221 'url', | |
206 ] | 222 ] |
207 | 223 |
208 | 224 |
209 hooks = [ | 225 hooks = [ |
210 { | 226 { |
211 # This clobbers when necessary (based on get_landmines.py). It must be the | 227 # This clobbers when necessary (based on get_landmines.py). It must be the |
212 # first hook so that other things that get/generate into the output | 228 # first hook so that other things that get/generate into the output |
213 # directory will not subsequently be clobbered. | 229 # directory will not subsequently be clobbered. |
214 'name': 'landmines', | 230 'name': 'landmines', |
215 'pattern': '.', | 231 'pattern': '.', |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
322 # corresponding .py files have already been deleted. | 338 # corresponding .py files have already been deleted. |
323 'name': 'remove_stale_pyc_files', | 339 'name': 'remove_stale_pyc_files', |
324 'pattern': 'src/tools/.*\\.py', | 340 'pattern': 'src/tools/.*\\.py', |
325 'action': [ | 341 'action': [ |
326 'python', | 342 'python', |
327 'src/tools/remove_stale_pyc_files.py', | 343 'src/tools/remove_stale_pyc_files.py', |
328 'src/tools', | 344 'src/tools', |
329 ], | 345 ], |
330 }, | 346 }, |
331 ] | 347 ] |
OLD | NEW |