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 419 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
430 | 430 |
431 'src/third_party/android_tools': | 431 'src/third_party/android_tools': |
432 Var('chromium_git') + '/android_tools.git' + '@' + 'af1c5a4cd6329ccdcf8c2bc
93d9eea02f9d74869', | 432 Var('chromium_git') + '/android_tools.git' + '@' + 'af1c5a4cd6329ccdcf8c2bc
93d9eea02f9d74869', |
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': | |
441 Var('chromium_git') + '/external/github.com/appurify/appurify-python.git' +
'@' + 'ee7abd5c5ae3106f72b2a0b9d2cb55094688e867', | |
442 | |
443 'src/third_party/errorprone/lib': | 440 'src/third_party/errorprone/lib': |
444 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', | 441 Var('chromium_git') + '/chromium/third_party/errorprone.git' + '@' + '0eea
83b66343133b9c76b7d3288c30321818ebcf', |
445 | 442 |
446 'src/third_party/findbugs': | 443 'src/third_party/findbugs': |
447 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', | 444 Var('chromium_git') + '/chromium/deps/findbugs.git' + '@' + '57f05238d3ac77
ea0a194813d3065dd780c6e566', |
448 | 445 |
449 'src/third_party/freetype-android/src': | 446 'src/third_party/freetype-android/src': |
450 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), | 447 Var('chromium_git') + '/chromium/src/third_party/freetype2.git' + '@' + Var
('freetype_android_revision'), |
451 | 448 |
452 'src/third_party/elfutils/src': | 449 'src/third_party/elfutils/src': |
(...skipping 548 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1001 'name': 'doclava', | 998 'name': 'doclava', |
1002 'pattern': '.', | 999 'pattern': '.', |
1003 'action': ['python', | 1000 'action': ['python', |
1004 'src/build/android/download_doclava.py', | 1001 'src/build/android/download_doclava.py', |
1005 ], | 1002 ], |
1006 }, | 1003 }, |
1007 ] | 1004 ] |
1008 | 1005 |
1009 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 1006 # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |
1010 recursedeps = [("src/third_party/angle", "DEPS.chromium")] | 1007 recursedeps = [("src/third_party/angle", "DEPS.chromium")] |
OLD | NEW |