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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 'src/third_party/liblouis/src': | 406 'src/third_party/liblouis/src': |
407 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', | 407 Var('chromium_git') + '/external/liblouis-github.git' + '@' + '5f9c03f2a347
8561deb6ae4798175094be8a26c2', |
408 | 408 |
409 # Used for embedded builds. CrOS & Linux use the system version. | 409 # Used for embedded builds. CrOS & Linux use the system version. |
410 'src/third_party/fontconfig/src': | 410 'src/third_party/fontconfig/src': |
411 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', | 411 Var('chromium_git') + '/external/fontconfig.git' + '@' + 'f16c3118e25546c1b
749f9823c51827a60aeb5c1', |
412 | 412 |
413 # ANGLE uses dEQP for GPU testing | 413 # ANGLE uses dEQP for GPU testing |
414 'src/third_party/deqp/src': | 414 'src/third_party/deqp/src': |
415 Var('deqp_url') + '@' + Var('deqp_revision'), | 415 Var('deqp_url') + '@' + Var('deqp_revision'), |
| 416 |
| 417 # Graphics buffer allocator for Chrome OS. |
| 418 'src/third_party/minigbm/src': |
| 419 Var('chromium_git') + '/chromiumos/platform/minigbm.git' + '@' + 'f9d2ab79a
15a1bb6a1307f3b608964c81c27791b', |
416 }, | 420 }, |
417 'android': { | 421 'android': { |
418 'src/third_party/android_protobuf/src': | 422 'src/third_party/android_protobuf/src': |
419 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', | 423 Var('chromium_git') + '/external/android_protobuf.git' + '@' + '999188d0dc7
2e97f7fe08bb756958a2cf090f4e7', |
420 | 424 |
421 'src/third_party/android_tools': | 425 'src/third_party/android_tools': |
422 Var('chromium_git') + '/android_tools.git' + '@' + '4238a28593b7e6178c95431
f91ca8c24e45fa7eb', | 426 Var('chromium_git') + '/android_tools.git' + '@' + '4238a28593b7e6178c95431
f91ca8c24e45fa7eb', |
423 | 427 |
424 'src/third_party/apache-mime4j': | 428 'src/third_party/apache-mime4j': |
425 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 429 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 # migration completes (let's say Sep 1 2014). | 803 # migration completes (let's say Sep 1 2014). |
800 'name': 'check_git_config', | 804 'name': 'check_git_config', |
801 'pattern': '.', | 805 'pattern': '.', |
802 'action': [ | 806 'action': [ |
803 'python', | 807 'python', |
804 'src/tools/check_git_config.py', | 808 'src/tools/check_git_config.py', |
805 '--running-as-hook', | 809 '--running-as-hook', |
806 ], | 810 ], |
807 }, | 811 }, |
808 ] | 812 ] |
OLD | NEW |