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 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
153 Var('chromium_git') + '/external/github.com/dart-lang/yaml.git' + '@' + Var(
'yaml_dart_revision'), | 153 Var('chromium_git') + '/external/github.com/dart-lang/yaml.git' + '@' + Var(
'yaml_dart_revision'), |
154 | 154 |
155 'src/third_party/pyelftools': | 155 'src/third_party/pyelftools': |
156 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3
e610c86fcadb837d252c794cb5e8008826ae', | 156 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3
e610c86fcadb837d252c794cb5e8008826ae', |
157 | 157 |
158 'src/third_party/breakpad/src': | 158 'src/third_party/breakpad/src': |
159 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '242fb9a38
db6ba534b1f7daa341dd4d79171658b', # from svn revision 1471 | 159 Var('chromium_git') + '/external/google-breakpad/src.git' + '@' + '242fb9a38
db6ba534b1f7daa341dd4d79171658b', # from svn revision 1471 |
160 | 160 |
161 'src/third_party/lss': | 161 'src/third_party/lss': |
162 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Var(
'lss_revision'), | 162 Var('chromium_git') + '/external/linux-syscall-support/lss.git' + '@' + Var(
'lss_revision'), |
| 163 |
| 164 'src/third_party/leveldatabase/src': |
| 165 Var('chromium_git') + '/external/leveldb.git' + '@' + '40c17c0b84ac0b791fb43
4096fd5c05f3819ad55', |
| 166 |
| 167 'src/third_party/snappy/src': |
| 168 Var('chromium_git') + '/external/snappy.git' + '@' + '762bb32f0c9d2f31ba4958
c7c0933d22e80c20bf', |
163 } | 169 } |
164 | 170 |
165 deps_os = { | 171 deps_os = { |
166 'android': { | 172 'android': { |
167 'src/third_party/colorama/src': | 173 'src/third_party/colorama/src': |
168 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d
2789ecbd7e8db2e18e6b8', | 174 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d
2789ecbd7e8db2e18e6b8', |
169 | 175 |
170 'src/third_party/jsr-305/src': | 176 'src/third_party/jsr-305/src': |
171 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', | 177 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', |
172 | 178 |
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 'name': 'prediction_resources', | 436 'name': 'prediction_resources', |
431 'pattern': '', | 437 'pattern': '', |
432 'action': [ 'download_from_google_storage', | 438 'action': [ 'download_from_google_storage', |
433 '--no_resume', | 439 '--no_resume', |
434 '--no_auth', | 440 '--no_auth', |
435 '--bucket', 'mojo/prediction', | 441 '--bucket', 'mojo/prediction', |
436 '-d', 'src/services/prediction/res', | 442 '-d', 'src/services/prediction/res', |
437 ], | 443 ], |
438 }, | 444 }, |
439 ] | 445 ] |
OLD | NEW |