DEPS.chromium 914 B

123456789101112131415161718192021222324252627
  1. # This file is used to manage the ANGLE's dependencies in the Chromium src repo. It is
  2. # used by gclient to determine what version of each dependency to check out, and
  3. # where.
  4. #
  5. # These deps are duplicated in ANGLE's DEPS file which we use for the standalone
  6. # build. The dual file setup is necessary because Chromium can only recurse into
  7. # a single file and we do not want to import all of ANGLE's standalone DEPS.
  8. #
  9. # If you make a change to one of these dependencies please also update the
  10. # standalone DEPS file.
  11. vars = {
  12. 'android_git': 'https://android.googlesource.com',
  13. 'deqp_revision': 'f4f3d8079e7a37d7675ab93583e6438d0bca0e58',
  14. }
  15. deps_os = {
  16. 'win': {
  17. 'src/third_party/deqp/src':
  18. Var('android_git') + '/platform/external/deqp@' + Var('deqp_revision'),
  19. },
  20. 'unix': {
  21. 'src/third_party/deqp/src':
  22. Var('android_git') + '/platform/external/deqp@' + Var('deqp_revision'),
  23. }
  24. }