| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   250   'src/third_party/pywebsocket/src': |   250   'src/third_party/pywebsocket/src': | 
|   251     Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + 
      '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', |   251     Var('chromium_git') + '/external/github.com/google/pywebsocket.git' + '@' + 
      '2d7b73c3acbd0f41dcab487ae5c97c6feae06ce2', | 
|   252  |   252  | 
|   253   'src/media/cdm/api': |   253   'src/media/cdm/api': | 
|   254     Var('chromium_git') + '/chromium/cdm.git' + '@' + '6a62dcef02523e2d5be4defb6
      8a7d9363c7389d2', |   254     Var('chromium_git') + '/chromium/cdm.git' + '@' + '6a62dcef02523e2d5be4defb6
      8a7d9363c7389d2', | 
|   255  |   255  | 
|   256   'src/third_party/mesa/src': |   256   'src/third_party/mesa/src': | 
|   257     Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
      035ca882cc77f85793fef', |   257     Var('chromium_git') + '/chromium/deps/mesa.git' + '@' + 'ef811c6bd4de74e13e7
      035ca882cc77f85793fef', | 
|   258  |   258  | 
|   259   'src/third_party/ced/src': |   259   'src/third_party/ced/src': | 
|   260     Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
      ' + '9012c0ab648025dd0f8df14294bf5d6d73793ac9', |   260     Var('chromium_git') + '/external/github.com/google/compact_enc_det.git' + '@
      ' + 'e57cdc44bd541d10669312a6fdc59fc4bf52d2b9', | 
|   261  |   261  | 
|   262   'src/third_party/swiftshader': |   262   'src/third_party/swiftshader': | 
|   263     Var('swiftshader_git') + '/SwiftShader.git' + '@' +  Var('swiftshader_revisi
      on'), |   263     Var('swiftshader_git') + '/SwiftShader.git' + '@' +  Var('swiftshader_revisi
      on'), | 
|   264  |   264  | 
|   265   'src/third_party/cld_2/src': |   265   'src/third_party/cld_2/src': | 
|   266     Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
      b58a5d7690ebf05a91406f371ce00c3daf31c0', |   266     Var('chromium_git') + '/external/github.com/CLD2Owners/cld2.git' + '@' + '84
      b58a5d7690ebf05a91406f371ce00c3daf31c0', | 
|   267  |   267  | 
|   268   'src/third_party/cld_3/src': |   268   'src/third_party/cld_3/src': | 
|   269     Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '79f01
      7acfa55012ab8a553700e4b7fe78ba3709c', |   269     Var('chromium_git') + '/external/github.com/google/cld_3.git' + '@' + '79f01
      7acfa55012ab8a553700e4b7fe78ba3709c', | 
|   270  |   270  | 
| (...skipping 783 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1054 ] |  1054 ] | 
|  1055  |  1055  | 
|  1056 recursedeps = [ |  1056 recursedeps = [ | 
|  1057   # buildtools provides clang_format, libc++, and libc++abi |  1057   # buildtools provides clang_format, libc++, and libc++abi | 
|  1058   'src/buildtools', |  1058   'src/buildtools', | 
|  1059   # android_tools manages the NDK. |  1059   # android_tools manages the NDK. | 
|  1060   'src/third_party/android_tools', |  1060   'src/third_party/android_tools', | 
|  1061   # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |  1061   # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 
|  1062   ("src/third_party/angle", "DEPS.chromium"), |  1062   ("src/third_party/angle", "DEPS.chromium"), | 
|  1063 ] |  1063 ] | 
| OLD | NEW |