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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 Var('chromium_git') + '/external/github.com/dart-lang/source_span.git' + '@'
+ Var('source_span_dart_revision'), | 145 Var('chromium_git') + '/external/github.com/dart-lang/source_span.git' + '@'
+ Var('source_span_dart_revision'), |
146 | 146 |
147 'src/third_party/dart-pkg/string_scanner': | 147 'src/third_party/dart-pkg/string_scanner': |
148 Var('chromium_git') + '/external/github.com/dart-lang/string_scanner.git' +
'@' + Var('string_scanner_dart_revision'), | 148 Var('chromium_git') + '/external/github.com/dart-lang/string_scanner.git' +
'@' + Var('string_scanner_dart_revision'), |
149 | 149 |
150 'src/third_party/dart-pkg/vector_math': | 150 'src/third_party/dart-pkg/vector_math': |
151 Var('chromium_git') + '/external/github.com/google/vector_math.dart.git' + '
@' + Var('vector_math_dart_revision'), | 151 Var('chromium_git') + '/external/github.com/google/vector_math.dart.git' + '
@' + Var('vector_math_dart_revision'), |
152 | 152 |
153 'src/third_party/dart-pkg/yaml': | 153 'src/third_party/dart-pkg/yaml': |
154 Var('chromium_git') + '/external/github.com/dart-lang/yaml.git' + '@' + Var(
'yaml_dart_revision'), | 154 Var('chromium_git') + '/external/github.com/dart-lang/yaml.git' + '@' + Var(
'yaml_dart_revision'), |
| 155 |
| 156 'src/third_party/pyelftools': |
| 157 Var('chromium_git') + '/chromiumos/third_party/pyelftools.git' + '@' + '19b3
e610c86fcadb837d252c794cb5e8008826ae', |
155 } | 158 } |
156 | 159 |
157 deps_os = { | 160 deps_os = { |
158 'android': { | 161 'android': { |
159 'src/third_party/colorama/src': | 162 'src/third_party/colorama/src': |
160 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d
2789ecbd7e8db2e18e6b8', | 163 Var('chromium_git') + '/external/colorama.git' + '@' + '799604a1041e9b3bc5d
2789ecbd7e8db2e18e6b8', |
161 | 164 |
162 'src/third_party/jsr-305/src': | 165 'src/third_party/jsr-305/src': |
163 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', | 166 Var('chromium_git') + '/external/jsr-305.git' + '@' + '642c508235471f722
0af6d5df2d3210e3bfc0919', |
164 | 167 |
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
414 'name': 'keyboard_native_resources', | 417 'name': 'keyboard_native_resources', |
415 'pattern': '', | 418 'pattern': '', |
416 'action': [ 'download_from_google_storage', | 419 'action': [ 'download_from_google_storage', |
417 '--no_resume', | 420 '--no_resume', |
418 '--no_auth', | 421 '--no_auth', |
419 '--bucket', 'mojo/keyboard_native', | 422 '--bucket', 'mojo/keyboard_native', |
420 '-d', 'src/services/keyboard_native/res', | 423 '-d', 'src/services/keyboard_native/res', |
421 ], | 424 ], |
422 }, | 425 }, |
423 ] | 426 ] |
OLD | NEW |