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 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
139 'src/third_party/libc++abi/trunk': | 139 'src/third_party/libc++abi/trunk': |
140 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), | 140 Var('chromium_git') + '/chromium/llvm-project/libcxxabi.git' + '@' + Var('li
bcxxabi_revision'), |
141 | 141 |
142 'src/third_party/snappy/src': | 142 'src/third_party/snappy/src': |
143 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', | 143 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
144 | 144 |
145 'src/tools/grit': | 145 'src/tools/grit': |
146 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '6a46b04d35eade32b12
70392317dca516c9dd56d', | 146 Var('chromium_git') + '/external/grit-i18n.git' + '@' + '6a46b04d35eade32b12
70392317dca516c9dd56d', |
147 | 147 |
148 'src/tools/gyp': | 148 'src/tools/gyp': |
149 Var('chromium_git') + '/external/gyp.git' + '@' + 'b38e5f2f93fa5b31a6001bd21
b9d8dcbf73e44e7', | 149 Var('chromium_git') + '/external/gyp.git' + '@' + '43a3b907eb20bd59c28c6e315
b3d9e348ab57ac7', # from svn revision 1970 |
150 | 150 |
151 'src/tools/swarming_client': | 151 'src/tools/swarming_client': |
152 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), | 152 Var('chromium_git') + '/external/swarming.client.git' + '@' + Var('swarming_
revision'), |
153 | 153 |
154 'src/v8': | 154 'src/v8': |
155 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), | 155 Var('chromium_git') + '/external/v8.git' + '@' + Var('v8_revision'), |
156 | 156 |
157 'src/native_client': | 157 'src/native_client': |
158 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + '3f998aa
8b2fd6ea40b7bc9a403bea27e8798c805', | 158 Var('chromium_git') + '/native_client/src/native_client.git' + '@' + '3f998aa
8b2fd6ea40b7bc9a403bea27e8798c805', |
159 | 159 |
(...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
783 # corresponding .py files have already been deleted. | 783 # corresponding .py files have already been deleted. |
784 'name': 'remove_stale_pyc_files', | 784 'name': 'remove_stale_pyc_files', |
785 'pattern': 'src/tools/.*\\.py', | 785 'pattern': 'src/tools/.*\\.py', |
786 'action': [ | 786 'action': [ |
787 'python', | 787 'python', |
788 'src/tools/remove_stale_pyc_files.py', | 788 'src/tools/remove_stale_pyc_files.py', |
789 'src/tools', | 789 'src/tools', |
790 ], | 790 ], |
791 }, | 791 }, |
792 ] | 792 ] |
OLD | NEW |