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 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 'src/third_party/libc++/trunk': | 148 'src/third_party/libc++/trunk': |
149 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), | 149 Var('chromium_git') + '/chromium/llvm-project/libcxx.git' + '@' + Var('libcx
x_revision'), |
150 | 150 |
151 'src/third_party/libc++abi/trunk': | 151 'src/third_party/libc++abi/trunk': |
152 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | 152 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), |
153 | 153 |
154 'src/third_party/snappy/src': | 154 'src/third_party/snappy/src': |
155 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 155 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
156 | 156 |
157 'src/tools/grit': | 157 'src/tools/grit': |
158 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '77abf65c1d72af6fb7f
9ef6f50cdf29fcf42d0a1', # from svn revision 175 | 158 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '740badd5e3e44434a9a
47b5d16749daac1e8ea80', # from svn revision 176 |
159 | 159 |
160 'src/tools/gyp': | 160 'src/tools/gyp': |
161 Var('chromium_git') + '/external/gyp.git' + '@' + '6760f5b1a4852fd6ccbe4ffc4
09d73edac445744', # from svn revision 1972 | 161 Var('chromium_git') + '/external/gyp.git' + '@' + '6760f5b1a4852fd6ccbe4ffc4
09d73edac445744', # from svn revision 1972 |
162 | 162 |
163 'src/tools/swarming_client': | 163 'src/tools/swarming_client': |
164 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 164 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
165 | 165 |
166 'src/v8': | 166 'src/v8': |
167 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), | 167 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), |
168 | 168 |
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
795 # corresponding .py files have already been deleted. | 795 # corresponding .py files have already been deleted. |
796 'name': 'remove_stale_pyc_files', | 796 'name': 'remove_stale_pyc_files', |
797 'pattern': 'src/tools/.*\\.py', | 797 'pattern': 'src/tools/.*\\.py', |
798 'action': [ | 798 'action': [ |
799 'python', | 799 'python', |
800 'src/tools/remove_stale_pyc_files.py', | 800 'src/tools/remove_stale_pyc_files.py', |
801 'src/tools', | 801 'src/tools', |
802 ], | 802 ], |
803 }, | 803 }, |
804 ] | 804 ] |
OLD | NEW |