| 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 # |
| 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run | 11 # Then commit .DEPS.git locally (gclient doesn't like dirty trees) and run |
| 12 # gclient sync | 12 # gclient sync |
| 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change | 13 # Verify the thing happened you wanted. Then revert your .DEPS.git change |
| 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically | 14 # DO NOT CHECK IN CHANGES TO .DEPS.git upstream. It will be automatically |
| 15 # updated by a bot when you modify this one. | 15 # updated by a bot when you modify this one. |
| 16 # | 16 # |
| 17 # When adding a new dependency, please update the top-level .gitignore file | 17 # When adding a new dependency, please update the top-level .gitignore file |
| 18 # to list the dependency's destination directory. | 18 # to list the dependency's destination directory. |
| 19 | 19 |
| 20 vars = { | 20 vars = { |
| 21 'chromium_git': 'https://chromium.googlesource.com', | 21 'chromium_git': 'https://chromium.googlesource.com', |
| 22 'sfntly_revision': '1bdaae8fc788a5ac8936d68bf24f37d977a13dac', | 22 'sfntly_revision': '1bdaae8fc788a5ac8936d68bf24f37d977a13dac', |
| 23 'skia_revision': '0899696e9fec7d376b63655bedaed76871cb15c2', | 23 'skia_revision': '4fc48af0d7bec93a911d32330f251386a8adec98', |
| 24 # Three lines of non-changing comments so that | 24 # Three lines of non-changing comments so that |
| 25 # the commit queue can handle CLs rolling Skia | 25 # the commit queue can handle CLs rolling Skia |
| 26 # and V8 without interference from each other. | 26 # and V8 without interference from each other. |
| 27 'v8_revision': 'cc2b2f487bfa07c4f8f33ac574a4580ad9ec0374', | 27 'v8_revision': 'cc2b2f487bfa07c4f8f33ac574a4580ad9ec0374', |
| 28 # Three lines of non-changing comments so that | 28 # Three lines of non-changing comments so that |
| 29 # the commit queue can handle CLs rolling ANGLE | 29 # the commit queue can handle CLs rolling ANGLE |
| 30 # and whatever else without interference from each other. | 30 # and whatever else without interference from each other. |
| 31 'angle_revision': '04184fb0465ea2692b90cf0fa8b203df6c31cebf', | 31 'angle_revision': '04184fb0465ea2692b90cf0fa8b203df6c31cebf', |
| 32 # Three lines of non-changing comments so that | 32 # Three lines of non-changing comments so that |
| 33 # the commit queue can handle CLs rolling build tools | 33 # the commit queue can handle CLs rolling build tools |
| (...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 # corresponding .py files have already been deleted. | 307 # corresponding .py files have already been deleted. |
| 308 'name': 'remove_stale_pyc_files', | 308 'name': 'remove_stale_pyc_files', |
| 309 'pattern': 'src/tools/.*\\.py', | 309 'pattern': 'src/tools/.*\\.py', |
| 310 'action': [ | 310 'action': [ |
| 311 'python', | 311 'python', |
| 312 'src/tools/remove_stale_pyc_files.py', | 312 'src/tools/remove_stale_pyc_files.py', |
| 313 'src/tools', | 313 'src/tools', |
| 314 ], | 314 ], |
| 315 }, | 315 }, |
| 316 ] | 316 ] |
| OLD | NEW |