Edit

kc3-lang/angle/DEPS.chromium

Branch :

  • Show log

    Commit

  • Author : Tobin Ehlis
    Date : 2018-05-24 10:56:17
    Hash : b971f499
    Message : Migrating ANGLE to split LVL repos Separated the Vulkan Validation Layers, Loader, Tools and Headers into separate dirs to map to the new separate repo structure. Bug: angleproject:2558 Change-Id: I422038f7dd7efe8c5b7a49dc5074de5caf40edfa Reviewed-on: https://chromium-review.googlesource.com/1071880 Commit-Queue: Jamie Madill <jmadill@chromium.org> Reviewed-by: Jamie Madill <jmadill@chromium.org>

  • DEPS.chromium
  • # This file is used to manage the ANGLE's dependencies in the Chromium src repo. It is
    # used by gclient to determine what version of each dependency to check out, and
    # where.
    #
    # These deps are duplicated in ANGLE's DEPS file which we use for the standalone
    # build. The dual file setup is necessary because Chromium can only recurse into
    # a single file and we do not want to import all of ANGLE's standalone DEPS.
    #
    # If you make a change to one of these dependencies please also update the
    # standalone DEPS file.
    
    vars = {
      'android_git': 'https://android.googlesource.com',
      'chromium_git': 'https://chromium.googlesource.com',
    
      # Current revision of dEQP.
      'deqp_revision': '4c0f2a4fba813e1046115c43c887eccb749b7bb3',
    
      # Current revision of glslang, the Khronos SPIRV compiler.
      'glslang_revision': '2edde6665d9a56ead5ea0e55b4e64d9a803e6164',
    
      # Current revision fo the SPIRV-Headers Vulkan support library.
      'spirv_headers_revision': '98b01515724c428d0f0a5d01deffcce0f5f5e61c',
    
      # Current revision of SPIRV-Tools for Vulkan.
      'spirv_tools_revision': '9996173f363729b3a97309685dbd4d78547a63a7',
    
      # Current revision of the Vulkan Headers.
      'vulkan_headers_revision': '634e3658d6fa8f95f9062a3a7831d5567baf0eb3',
    
      # Current revision of the Vulkan Loader.
      'vulkan_loader_revision': '1bd294a1ddb32e832916aa874d103618f4faf1b3',
    
      # Current revision of the Vulkan Tools where Mock ICD is located.
      'vulkan_tools_revision': '84230dc24e866d887f6d856c6e12745292703d49',
    
      # Current revision of the Vulkan Validation Layers.
      'vulkan_layers_revision': '571a886b62cc7092626064376a65c7654f5d9b39',
    }
    
    deps = {
      'src/third_party/angle/third_party/deqp/src':
        Var('android_git') + '/platform/external/deqp@' + Var('deqp_revision'),
    
      'src/third_party/angle/third_party/glslang/src':
        Var('android_git') + '/platform/external/shaderc/glslang@' + Var('glslang_revision'),
    
      'src/third_party/angle/third_party/spirv-headers/src':
        Var('android_git') + '/platform/external/shaderc/spirv-headers@' + Var('spirv_headers_revision'),
    
      'src/third_party/angle/third_party/spirv-tools/src':
        Var('android_git') + '/platform/external/shaderc/spirv-tools@' + Var('spirv_tools_revision'),
    
      'src/third_party/angle/third_party/vulkan-headers/src':
        Var('chromium_git') + '/external/github.com/KhronosGroup/Vulkan-Headers@' + Var('vulkan_headers_revision'),
    
      'src/third_party/angle/third_party/vulkan-loader/src':
        Var('chromium_git') + '/external/github.com/KhronosGroup/Vulkan-Loader@' + Var('vulkan_loader_revision'),
    
      'src/third_party/angle/third_party/vulkan-tools/src':
        Var('chromium_git') + '/external/github.com/KhronosGroup/Vulkan-Tools@' + Var('vulkan_tools_revision'),
    
      'src/third_party/angle/third_party/vulkan-validation-layers/src':
        Var('chromium_git') + '/external/github.com/KhronosGroup/Vulkan-ValidationLayers@' + Var('vulkan_layers_revision'),
    }