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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 'src/tools/grit': | 151 'src/tools/grit': |
152 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '740badd5e3e44434a9a
47b5d16749daac1e8ea80', # from svn revision 176 | 152 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '740badd5e3e44434a9a
47b5d16749daac1e8ea80', # from svn revision 176 |
153 | 153 |
154 'src/tools/gyp': | 154 'src/tools/gyp': |
155 Var('chromium_git') + '/external/gyp.git' + '@' + '46282cedf40ff7fe803be4af3
57b9d59050f02e4', # from svn revision 1977 | 155 Var('chromium_git') + '/external/gyp.git' + '@' + '46282cedf40ff7fe803be4af3
57b9d59050f02e4', # from svn revision 1977 |
156 | 156 |
157 'src/tools/swarming_client': | 157 'src/tools/swarming_client': |
158 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 158 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
159 | 159 |
160 'src/v8': | 160 'src/v8': |
161 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), | 161 Var('chromium_git') + '/v8/v8.git' + '@' + Var('v8_revision'), |
162 | 162 |
163 'src/native_client': | 163 'src/native_client': |
164 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), | 164 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + Var('nac
l_revision'), |
165 | 165 |
166 'src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin': | 166 'src/chrome/test/data/extensions/api_test/permissions/nacl_enabled/bin': |
167 Var('chromium_git') + '/native_client/src/native_client/tests/prebuilt.git' +
'@' + '3e17365176c94624f46cace174f61834b7f3c35d', | 167 Var('chromium_git') + '/native_client/src/native_client/tests/prebuilt.git' +
'@' + '3e17365176c94624f46cace174f61834b7f3c35d', |
168 | 168 |
169 'src/third_party/sfntly/cpp/src': | 169 'src/third_party/sfntly/cpp/src': |
170 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), | 170 Var('chromium_git') + '/external/sfntly/cpp/src.git' + '@' + Var('sfntly_re
vision'), |
171 | 171 |
(...skipping 621 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
793 # corresponding .py files have already been deleted. | 793 # corresponding .py files have already been deleted. |
794 'name': 'remove_stale_pyc_files', | 794 'name': 'remove_stale_pyc_files', |
795 'pattern': 'src/tools/.*\\.py', | 795 'pattern': 'src/tools/.*\\.py', |
796 'action': [ | 796 'action': [ |
797 'python', | 797 'python', |
798 'src/tools/remove_stale_pyc_files.py', | 798 'src/tools/remove_stale_pyc_files.py', |
799 'src/tools', | 799 'src/tools', |
800 ], | 800 ], |
801 }, | 801 }, |
802 ] | 802 ] |
OLD | NEW |