| 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 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 433 | 433 |
| 434 'src/third_party/apache-mime4j': | 434 'src/third_party/apache-mime4j': |
| 435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', | 435 Var('chromium_git') + '/chromium/deps/apache-mime4j.git' + '@' + '28cb1108b
ff4b6cf0a2e86ff58b3d025934ebe3a', |
| 436 | 436 |
| 437 'src/third_party/apache-portable-runtime/src': | 437 'src/third_party/apache-portable-runtime/src': |
| 438 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a
8c4277e09a82eaa229e35246edea1ee0a6a1', | 438 Var('chromium_git') + '/external/apache-portable-runtime.git' + '@' + 'c76a
8c4277e09a82eaa229e35246edea1ee0a6a1', |
| 439 | 439 |
| 440 'src/third_party/appurify-python/src': | 440 'src/third_party/appurify-python/src': |
| 441 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | 441 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', |
| 442 | 442 |
| 443 'src/third_party/cardboard-java/src': | |
| 444 Var('chromium_git') + '/external/github.com/googlesamples/cardboard-java.gi
t' + '@' + 'e36ee57e72bbd057ddb53b127954177b50e18df7', | |
| 445 | |
| 446 'src/third_party/errorprone/lib': | 443 'src/third_party/errorprone/lib': |
| 447 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 444 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
| 448 | 445 |
| 449 'src/third_party/findbugs': | 446 'src/third_party/findbugs': |
| 450 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', | 447 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', |
| 451 | 448 |
| 452 'src/third_party/freetype-android/src': | 449 'src/third_party/freetype-android/src': |
| 453 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 450 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
| 454 | 451 |
| 455 'src/third_party/elfutils/src': | 452 'src/third_party/elfutils/src': |
| (...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1004 'name': 'doclava', | 1001 'name': 'doclava', |
| 1005 'pattern': '.', | 1002 'pattern': '.', |
| 1006 'action': ['python', | 1003 'action': ['python', |
| 1007 'src/build/android/download_doclava.py', | 1004 'src/build/android/download_doclava.py', |
| 1008 ], | 1005 ], |
| 1009 }, | 1006 }, |
| 1010 ] | 1007 ] |
| 1011 | 1008 |
| 1012 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
| 1013 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
| OLD | NEW |