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