Edit

kc3-lang/angle/DEPS

Branch :

  • Show log

    Commit

  • Author : angle-autoroll
    Date : 2019-10-25 07:01:10
    Hash : ec14fd5a
    Message : Roll third_party/glslang/src 7662586844f4..b131630e7c74 (1 commits) https://chromium.googlesource.com/external/github.com/KhronosGroup/glslang/+log/7662586844f4..b131630e7c74 Created with: gclient setdep -r third_party/glslang/src@b131630e7c74 If this roll has caused a breakage, revert this CL and stop the roller using the controls here: https://autoroll.skia.org/r/glslang-angle-autoroll Please CC jonahr@google.com on the revert to ensure that a human is aware of the problem. To report a problem with the AutoRoller itself, please file a bug: https://bugs.chromium.org/p/skia/issues/entry?template=Autoroller+Bug Documentation for the AutoRoller is here: https://skia.googlesource.com/buildbot/+/master/autoroll/README.md Bug: None TBR=jonahr@google.com Change-Id: Ia4ef9eeef7404245de43d5adf1636e395c4e61f2 Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/1880657 Reviewed-by: angle-autoroll <angle-autoroll@skia-public.iam.gserviceaccount.com> Commit-Queue: angle-autoroll <angle-autoroll@skia-public.iam.gserviceaccount.com>

  • DEPS
  • # This file is used to manage the dependencies of the ANGLE git repo. It is
    # used by gclient to determine what version of each dependency to check out, and
    # where.
    
    # Avoids the need for a custom root variable.
    use_relative_paths = True
    use_relative_hooks = True
    
    vars = {
      'android_git': 'https://android.googlesource.com',
      'chromium_git': 'https://chromium.googlesource.com',
      'chrome_internal_git': 'https://chrome-internal.googlesource.com',
      'swiftshader_git': 'https://swiftshader.googlesource.com',
    
      # This variable is overrided in Chromium's DEPS file.
      'build_with_chromium': False,
    
      # Only check out public sources by default. This can be overridden with custom_vars.
      # We overload Chromium's 'src-internal' for simplicity.
      # TOOD(ynovikov): Use checkout_angle_internal custom variable instead.
      'checkout_src_internal': False,
    
      # Version of Chromium our Chromium-based DEPS are mirrored from.
      'chromium_revision': '9325340209749c1ff4eb198a8f7176c0a16dea6d',
    
      # Current revision of dEQP.
      'deqp_revision': 'd3eef28e67ce6795ba3a2124aaa977819729d45f',
    
      # Current revision of glslang, the Khronos SPIRV compiler.
      'glslang_revision': 'b131630e7c749a5dc19faa458024260c71fb170f',
    
      # Current revision fo the SPIRV-Headers Vulkan support library.
      'spirv_headers_revision': '842ec90674627ed2ffef609e3cd79d1562eded01',
    
      # Current revision of SPIRV-Tools for Vulkan.
      'spirv_tools_revision': 'feb154921397dc8c43c130a6b5c123efdb432a9b',
    
      # Current revision of Khronos Vulkan-Headers.
      'vulkan_headers_revision': 'd287523f48dba1b669866c5d6625b29931948e39',
    
      # Current revision of Khronos Vulkan-Loader.
      'vulkan_loader_revision': '96bd3651364f3145d7b8d495497f40f376e37a81',
    
      # Current revision of Khronos Vulkan-Tools.
      'vulkan_tools_revision': '40cd2166a44647a4283517e31af4589410c654eb',
    
      # Current revision of Khronos Vulkan-ValidationLayers.
      'vulkan_validation_revision': 'f8ea20adee82d262134fc3fa1a417a6e86fdff23',
    }
    
    deps = {
    
      'build': {
        'url': '{chromium_git}/chromium/src/build.git@592281c03c6bea25793f116bb442ec2dae991429',
        'condition': 'not build_with_chromium',
      },
    
      'buildtools': {
        'url': '{chromium_git}/chromium/src/buildtools.git@cf454b247c611167388742c7a31ef138a6031172',
        'condition': 'not build_with_chromium',
      },
    
      'testing': {
        'url': '{chromium_git}/chromium/src/testing@6752fa027a3f042ec12afc5cdae0fb093376aaf0',
        'condition': 'not build_with_chromium',
      },
    
      # Cherry is a dEQP management GUI written in Go. We use it for viewing test results.
      'third_party/cherry': {
        'url': '{android_git}/platform/external/cherry@4f8fb08d33ca5ff05a1c638f04c85bbb8d8b52cc',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/deqp/src': {
        'url': '{chromium_git}/external/deqp@{deqp_revision}',
      },
    
      'third_party/fuchsia-sdk': {
        'url': '{chromium_git}/chromium/src/third_party/fuchsia-sdk.git@1785f0ac8e1fe81cb25e260acbe7de8f62fa3e44',
        'condition': 'checkout_fuchsia and not build_with_chromium',
      },
    
      # Closed-source OpenGL ES 1.1 Conformance tests.
      'third_party/gles1_conform': {
        'url': '{chrome_internal_git}/angle/es-cts.git@dc9f502f709c9cd88d7f8d3974f1c77aa246958e',
        'condition': 'checkout_src_internal',
      },
    
      # glmark2 is a GPL3-licensed OpenGL ES 2.0 benchmark. We use it for testing.
      'third_party/glmark2/src': {
        'url': '{chromium_git}/external/github.com/glmark2/glmark2@9e01aef1a786b28aca73135a5b00f85c357e8f5e',
      },
    
      'third_party/glslang/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/glslang@{glslang_revision}',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/googletest': {
        'url': '{chromium_git}/chromium/src/third_party/googletest@c721b68ddecc18bbc6b763b2fe8ab802c22f228a',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/googletest/src': {
        'url': '{chromium_git}/external/github.com/google/googletest.git@f2fb48c3b3d79a75a88a99fba6576b25d42ec528',
        'condition': 'not build_with_chromium',
      },
    
      # libjpeg_turbo is used by glmark2.
      'third_party/libjpeg_turbo': {
        'url': '{chromium_git}/chromium/deps/libjpeg_turbo.git@9d3bf3e9680156c48041c8b90fece504e3539a61',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/libpng/src': {
        'url': '{android_git}/platform/external/libpng@094e181e79a3d6c23fd005679025058b7df1ad6c',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/jsoncpp': {
        'url': '{chromium_git}/chromium/src/third_party/jsoncpp@48246a099549ab325c01f69f24a34fc72e5c42e4',
        'condition': 'not build_with_chromium',
       },
    
      'third_party/jsoncpp/source': {
        'url' : '{chromium_git}/external/github.com/open-source-parsers/jsoncpp.git@645250b6690785be60ab6780ce4b58698d884d11',
        'condition': 'not build_with_chromium',
       },
    
      'third_party/Python-Markdown': {
        'url': '{chromium_git}/chromium/src/third_party/Python-Markdown@36657c103ce5964733bbbb29377085e9cc1a9472',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/qemu-linux-x64': {
          'packages': [
              {
                  'package': 'fuchsia/qemu/linux-amd64',
                  'version': '9cc486c5b18a0be515c39a280ca9a309c54cf994'
              },
          ],
          'condition': 'not build_with_chromium and (host_os == "linux" and checkout_fuchsia)',
          'dep_type': 'cipd',
      },
    
      'third_party/qemu-mac-x64': {
          'packages': [
              {
                  'package': 'fuchsia/qemu/mac-amd64',
                  'version': '2d3358ae9a569b2d4a474f498b32b202a152134f'
              },
          ],
          'condition': 'not build_with_chromium and (host_os == "mac" and checkout_fuchsia)',
          'dep_type': 'cipd',
      },
    
      'third_party/rapidjson/src': {
        'url': '{chromium_git}/external/github.com/Tencent/rapidjson@7484e06c589873e1ed80382d262087e4fa80fb63',
      },
    
      'third_party/spirv-headers/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Headers@{spirv_headers_revision}',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/spirv-tools/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/SPIRV-Tools@{spirv_tools_revision}',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/SwiftShader': {
        'url': '{swiftshader_git}/SwiftShader@883e817b14bfc4f644dbcc3fb9d2c5b988bbe71f',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/vulkan-headers/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Headers@{vulkan_headers_revision}',
      },
    
      'third_party/vulkan-loader/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Loader@{vulkan_loader_revision}',
      },
    
      'third_party/vulkan-tools/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-Tools@{vulkan_tools_revision}',
      },
    
      'third_party/vulkan-validation-layers/src': {
        'url': '{chromium_git}/external/github.com/KhronosGroup/Vulkan-ValidationLayers@{vulkan_validation_revision}',
      },
    
      'third_party/yasm': {
        'url': '{chromium_git}/chromium/src/third_party/yasm@cc10bc0f1d96a4bae0e775f2ac2b6ac5b08078c6',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/yasm/source/patched-yasm': {
        'url': '{chromium_git}/chromium/deps/yasm/patched-yasm.git@720b70524a4424b15fc57e82263568c8ba0496ad',
        'condition': 'not build_with_chromium',
      },
    
      'third_party/zlib': {
        'url': '{chromium_git}/chromium/src/third_party/zlib@ddebad26cfadeb4ecdfe3da8beb396a85cf90c91',
        'condition': 'not build_with_chromium',
      },
    
      'tools/clang': {
        'url': '{chromium_git}/chromium/src/tools/clang.git@6bc727d9d80f2c3a97587676bb38c5472afe7e60',
        'condition': 'not build_with_chromium',
      },
    
      'tools/md_browser': {
        'url': '{chromium_git}/chromium/src/tools/md_browser@0bfd826f8566a99923e64a782908faca72bc457c',
        'condition': 'not build_with_chromium',
      },
    
      'tools/memory': {
        'url': '{chromium_git}/chromium/src/tools/memory@89552acb6e60f528fe3c98eac7b445d4c34183ee',
        'condition': 'not build_with_chromium',
      },
    }
    
    hooks = [
      # Pull clang-format binaries using checked-in hashes.
      {
        'name': 'clang_format_win',
        'pattern': '.',
        'condition': 'host_os == "win" and not build_with_chromium',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--platform=win32',
                    '--no_auth',
                    '--bucket', 'chromium-clang-format',
                    '-s', 'buildtools/win/clang-format.exe.sha1',
        ],
      },
      {
        'name': 'clang_format_mac',
        'pattern': '.',
        'condition': 'host_os == "mac" and not build_with_chromium',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--platform=darwin',
                    '--no_auth',
                    '--bucket', 'chromium-clang-format',
                    '-s', 'buildtools/mac/clang-format.sha1',
        ],
      },
      {
        'name': 'clang_format_linux',
        'pattern': '.',
        'condition': 'host_os == "linux" and not build_with_chromium',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--platform=linux*',
                    '--no_auth',
                    '--bucket', 'chromium-clang-format',
                    '-s', 'buildtools/linux64/clang-format.sha1',
        ],
      },
      {
        'name': 'sysroot_x86',
        'pattern': '.',
        'condition': 'checkout_linux and ((checkout_x86 or checkout_x64) and not build_with_chromium)',
        'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
                   '--arch=x86'],
      },
      {
        'name': 'sysroot_x64',
        'pattern': '.',
        'condition': 'checkout_linux and (checkout_x64 and not build_with_chromium)',
        'action': ['python', 'build/linux/sysroot_scripts/install-sysroot.py',
                   '--arch=x64'],
      },
      {
        # Update the Windows toolchain if necessary.  Must run before 'clang' below.
        'name': 'win_toolchain',
        'pattern': '.',
        'condition': 'checkout_win and not build_with_chromium',
        'action': ['python', 'build/vs_toolchain.py', 'update', '--force'],
      },
      {
        # Update the Mac toolchain if necessary.
        'name': 'mac_toolchain',
        'pattern': '.',
        'condition': 'checkout_mac and not build_with_chromium',
        'action': ['python', 'build/mac_toolchain.py'],
      },
    
      {
        # Note: On Win, this should run after win_toolchain, as it may use it.
        'name': 'clang',
        'pattern': '.',
        'action': ['python', 'tools/clang/scripts/update.py'],
        'condition': 'not build_with_chromium',
      },
    
      {
        # Update LASTCHANGE.
        'name': 'lastchange',
        'pattern': '.',
        'condition': 'not build_with_chromium',
        'action': ['python', 'build/util/lastchange.py',
                   '-o', 'build/util/LASTCHANGE'],
      },
    
      # Pull rc binaries using checked-in hashes.
      {
        'name': 'rc_win',
        'pattern': '.',
        'condition': 'checkout_win and (host_os == "win" and not build_with_chromium)',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--no_auth',
                    '--bucket', 'chromium-browser-clang/rc',
                    '-s', 'build/toolchain/win/rc/win/rc.exe.sha1',
        ],
      },
    
      {
        'name': 'fuchsia_sdk',
        'pattern': '.',
        'condition': 'checkout_fuchsia and not build_with_chromium',
        'action': [
          'python',
          'build/fuchsia/update_sdk.py',
        ],
      },
    
      # Download glslang validator binary for Linux.
      {
        'name': 'linux_glslang_validator',
        'pattern': '.',
        'condition': 'checkout_linux and not build_with_chromium',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--platform=linux*',
                    '--no_auth',
                    '--bucket', 'angle-glslang-validator',
                    '-s', 'tools/glslang/glslang_validator.sha1',
        ],
      },
    
      # Download glslang validator binary for Windows.
      {
        'name': 'win_glslang_validator',
        'pattern': '.',
        'condition': 'checkout_win and not build_with_chromium',
        'action': [ 'download_from_google_storage',
                    '--no_resume',
                    '--platform=win32*',
                    '--no_auth',
                    '--bucket', 'angle-glslang-validator',
                    '-s', 'tools/glslang/glslang_validator.exe.sha1',
        ],
      },
    ]
    
    recursedeps = [
      # buildtools provides clang_format.
      'buildtools',
    ]