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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
163 'src/tools/gyp': | 163 'src/tools/gyp': |
164 Var('chromium_git') + '/external/gyp.git' + '@' + '43a3b907eb20bd59c28c6e315
b3d9e348ab57ac7', # from svn revision 1970 | 164 Var('chromium_git') + '/external/gyp.git' + '@' + '43a3b907eb20bd59c28c6e315
b3d9e348ab57ac7', # from svn revision 1970 |
165 | 165 |
166 'src/tools/swarming_client': | 166 'src/tools/swarming_client': |
167 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 167 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
168 | 168 |
169 'src/v8': | 169 'src/v8': |
170 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), | 170 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), |
171 | 171 |
172 'src/native_client': | 172 'src/native_client': |
173 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + '3f998aa
8b2fd6ea40b7bc9a403bea27e8798c805', | 173 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + 'cb44d52
4fdfeb47a4d5b5946efa439a4f857f080', |
174 | 174 |
175 'src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin': | 175 'src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin': |
176 Var('chromium_git') + '/native_client/src/native_client/tests/prebuilt.git' +
'@' + '3e17365176c94624f46cace174f61834b7f3c35d', | 176 Var('chromium_git') + '/native_client/src/native_client/tests/prebuilt.git' +
'@' + '3e17365176c94624f46cace174f61834b7f3c35d', |
177 | 177 |
178 'src/third_party/sfntly/cpp/src': | 178 'src/third_party/sfntly/cpp/src': |
179 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), | 179 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), |
180 | 180 |
181 'src/third_party/skia': | 181 'src/third_party/skia': |
182 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), | 182 Var('chromium_git') + '/skia.git' + '@' + Var('skia_revision'), |
183 | 183 |
(...skipping 615 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # corresponding .py files have already been deleted. | 799 # corresponding .py files have already been deleted. |
800 'name': 'remove_stale_pyc_files', | 800 'name': 'remove_stale_pyc_files', |
801 'pattern': 'src/tools/.*\\.py', | 801 'pattern': 'src/tools/.*\\.py', |
802 'action': [ | 802 'action': [ |
803 'python', | 803 'python', |
804 'src/tools/remove_stale_pyc_files.py', | 804 'src/tools/remove_stale_pyc_files.py', |
805 'src/tools', | 805 'src/tools', |
806 ], | 806 ], |
807 }, | 807 }, |
808 ] | 808 ] |
OLD | NEW |