OLD | NEW |
1 # This file is used to manage the dependencies of the Chromium src repo. It is | 1 # This file is used to manage the dependencies of the Chromium src repo. It is |
2 # used by gclient to determine what version of each dependency to check out, and | 2 # used by gclient to determine what version of each dependency to check out, and |
3 # where. | 3 # where. |
4 # | 4 # |
5 # For more information, please refer to the official documentation: | 5 # For more information, please refer to the official documentation: |
6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code | 6 # https://sites.google.com/a/chromium.org/dev/developers/how-tos/get-the-code |
7 # | 7 # |
8 # When adding a new dependency, please update the top-level .gitignore file | 8 # When adding a new dependency, please update the top-level .gitignore file |
9 # to list the dependency's destination directory. | 9 # to list the dependency's destination directory. |
10 # | 10 # |
(...skipping 397 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
408 | 408 |
409 'src/third_party/apache-mime4j': | 409 'src/third_party/apache-mime4j': |
410 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 410 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
411 | 411 |
412 'src/third_party/appurify-python/src': | 412 'src/third_party/appurify-python/src': |
413 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 413 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
414 | 414 |
415 'src/third_party/cardboard-java/src': | 415 'src/third_party/cardboard-java/src': |
416 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + '08ad25a04f2801bd822c3f2cd28301b68d74aef6', | 416 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + '08ad25a04f2801bd822c3f2cd28301b68d74aef6', |
417 | 417 |
| 418 'src/third_party/errorprone/lib': |
| 419 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '6c66
e56c0f9d750aef83190466df834f9d6af8ab', |
| 420 |
418 'src/third_party/findbugs': | 421 'src/third_party/findbugs': |
419 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', | 422 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '7f69fa78a6db6d
c31866d09572a0e356e921bf12', |
420 | 423 |
421 'src/third_party/freetype-android/src': | 424 'src/third_party/freetype-android/src': |
422 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'e1
86230678ee8e4ea4ac4797ece8125761e3225a', | 425 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + 'e1
86230678ee8e4ea4ac4797ece8125761e3225a', |
423 | 426 |
424 'src/third_party/elfutils/src': | 427 'src/third_party/elfutils/src': |
425 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', | 428 Var('chromium_git') + '/external/elfutils.git' + '@' + '249673729a7e5dbd5de
4f3760bdcaa3d23d154d7', |
426 | 429 |
427 'src/third_party/httpcomponents-client': | 430 'src/third_party/httpcomponents-client': |
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
782 # migration completes (let's say Sep 1 2014). | 785 # migration completes (let's say Sep 1 2014). |
783 'name': 'check_git_config', | 786 'name': 'check_git_config', |
784 'pattern': '.', | 787 'pattern': '.', |
785 'action': [ | 788 'action': [ |
786 'python', | 789 'python', |
787 'src/tools/check_git_config.py', | 790 'src/tools/check_git_config.py', |
788 '--running-as-hook', | 791 '--running-as-hook', |
789 ], | 792 ], |
790 }, | 793 }, |
791 ] | 794 ] |
OLD | NEW |