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 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 'src/third_party/libc++/trunk': | 147 'src/third_party/libc++/trunk': |
148 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), | 148 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), |
149 | 149 |
150 'src/third_party/libc++abi/trunk': | 150 'src/third_party/libc++abi/trunk': |
151 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | 151 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), |
152 | 152 |
153 'src/third_party/snappy/src': | 153 'src/third_party/snappy/src': |
154 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 154 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
155 | 155 |
156 'src/tools/grit': | 156 'src/tools/grit': |
157 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '206c6aa4450db4e961d
20f8367f33df42bba6a85', # from svn revision 173 | 157 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '77abf65c1d72af6fb7f
9ef6f50cdf29fcf42d0a1', # from svn revision 175 |
158 | 158 |
159 'src/tools/gyp': | 159 'src/tools/gyp': |
160 Var('chromium_git') + '/external/gyp.git' + '@' + '43a3b907eb20bd59c28c6e315
b3d9e348ab57ac7', # from svn revision 1970 | 160 Var('chromium_git') + '/external/gyp.git' + '@' + '43a3b907eb20bd59c28c6e315
b3d9e348ab57ac7', # from svn revision 1970 |
161 | 161 |
162 'src/tools/swarming_client': | 162 'src/tools/swarming_client': |
163 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 163 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
164 | 164 |
165 'src/v8': | 165 'src/v8': |
166 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), | 166 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), |
167 | 167 |
(...skipping 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
792 # corresponding .py files have already been deleted. | 792 # corresponding .py files have already been deleted. |
793 'name': 'remove_stale_pyc_files', | 793 'name': 'remove_stale_pyc_files', |
794 'pattern': 'src/tools/.*\\.py', | 794 'pattern': 'src/tools/.*\\.py', |
795 'action': [ | 795 'action': [ |
796 'python', | 796 'python', |
797 'src/tools/remove_stale_pyc_files.py', | 797 'src/tools/remove_stale_pyc_files.py', |
798 'src/tools', | 798 'src/tools', |
799 ], | 799 ], |
800 }, | 800 }, |
801 ] | 801 ] |
OLD | NEW |