| 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 476 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   487     'src/third_party/mockito/src': |   487     'src/third_party/mockito/src': | 
|   488       Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
      d4cf5ea53c69a8a8053780b04b850', |   488       Var('chromium_git') + '/external/mockito/mockito.git' + '@' + 'de83ad4598a
      d4cf5ea53c69a8a8053780b04b850', | 
|   489  |   489  | 
|   490     'src/third_party/netty-tcnative/src': |   490     'src/third_party/netty-tcnative/src': | 
|   491       Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4
      efe6fc3f70077f22471e83ffb446', |   491       Var('chromium_git') + '/external/netty-tcnative.git' + '@' + '2e0f9503f3d4
      efe6fc3f70077f22471e83ffb446', | 
|   492  |   492  | 
|   493     'src/third_party/netty4/src': |   493     'src/third_party/netty4/src': | 
|   494       Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
      19414d0ac81f2ef6ba3c', |   494       Var('chromium_git') + '/external/netty4.git' + '@' + 'e0f26303b4ce635365be
      19414d0ac81f2ef6ba3c', | 
|   495  |   495  | 
|   496     'src/third_party/robolectric/robolectric': |   496     'src/third_party/robolectric/robolectric': | 
|   497       Var('chromium_git') + '/external/robolectric.git' + '@' + '5244ef6a3a6aada
      84a7f4f270f253b760019c14c', |   497       Var('chromium_git') + '/external/robolectric.git' + '@' + '2a0b6ba221c14f3
      371813a676ce06143353e448d', | 
|   498  |   498  | 
|   499     'src/third_party/ub-uiautomator/lib': |   499     'src/third_party/ub-uiautomator/lib': | 
|   500       Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
      00270549ce3161ae72ceb24712618ea28b4f9434', |   500       Var('chromium_git') + '/chromium/third_party/ub-uiautomator.git' + '@' + '
      00270549ce3161ae72ceb24712618ea28b4f9434', | 
|   501  |   501  | 
|   502     'src/third_party/leakcanary/src': |   502     'src/third_party/leakcanary/src': | 
|   503       Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
       '608ded739e036a3aa69db47ac43777dcee506f8e', |   503       Var('chromium_git') + '/external/github.com/square/leakcanary.git' + '@' +
       '608ded739e036a3aa69db47ac43777dcee506f8e', | 
|   504  |   504  | 
|   505     'src/third_party/lss': |   505     'src/third_party/lss': | 
|   506       Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
      on'), |   506       Var('chromium_git') + '/linux-syscall-support.git' + '@' + Var('lss_revisi
      on'), | 
|   507  |   507  | 
| (...skipping 641 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1149 recursedeps = [ |  1149 recursedeps = [ | 
|  1150   # buildtools provides clang_format, libc++, and libc++abi |  1150   # buildtools provides clang_format, libc++, and libc++abi | 
|  1151   'src/buildtools', |  1151   'src/buildtools', | 
|  1152   # android_tools manages the NDK. |  1152   # android_tools manages the NDK. | 
|  1153   'src/third_party/android_tools', |  1153   'src/third_party/android_tools', | 
|  1154   # ANGLE manages DEPS that it also owns the build files for, such as dEQP. |  1154   # ANGLE manages DEPS that it also owns the build files for, such as dEQP. | 
|  1155   ("src/third_party/angle", "DEPS.chromium"), |  1155   ("src/third_party/angle", "DEPS.chromium"), | 
|  1156   # SwiftShader manages DEPS that it also owns the build files for, such as Subz
      ero. |  1156   # SwiftShader manages DEPS that it also owns the build files for, such as Subz
      ero. | 
|  1157   ("src/third_party/swiftshader", "DEPS"), |  1157   ("src/third_party/swiftshader", "DEPS"), | 
|  1158 ] |  1158 ] | 
| OLD | NEW |