libjxl

FORK: libjxl patches used on blog
git clone https://git.neptards.moe/blog/libjxl.git
Log | Files | Refs | Submodules | README | LICENSE

jxl_vars.bzl (1608B)


      1 # Copyright (c) the JPEG XL Project Authors. All rights reserved.
      2 #
      3 # Use of this source code is governed by a BSD-style
      4 # license that can be found in the LICENSE file.
      5 
      6 # Extra build variables.
      7 
      8 libjxl_root_package = "libjxl"
      9 
     10 libjxl_deps_brotli = ["@brotli//:brotlidec", "@brotli//:brotlienc"]
     11 libjxl_deps_gif = ["@gif//:gif"]
     12 libjxl_deps_gtest = ["@googletest//:gtest_main"]
     13 libjxl_deps_hwy = ["@highway//:hwy"]
     14 libjxl_deps_hwy_nanobenchmark = ["@highway//:nanobenchmark"]
     15 libjxl_deps_hwy_test_util = ["@highway//:hwy_test_util"]
     16 libjxl_deps_jpeg = ["@libjpeg_turbo//:jpeg"]
     17 libjxl_deps_exr = ["@openexr//:OpenEXR"]
     18 libjxl_deps_png = ["@libpng//:png"]
     19 libjxl_deps_runfiles = ["@bazel_tools//tools/cpp/runfiles"]
     20 libjxl_deps_skcms = ["@skcms//:skcms"]
     21 libjxl_deps_testdata = ["//:testdata"]
     22 
     23 libjxl_test_shards = {
     24     "jpegli/decode_api_test": 10,
     25     "jpegli/encode_api_test": 4,
     26     "jpegli/input_suspension_test": 6,
     27     "jpegli/output_suspension_test": 2,
     28     "jxl/ans_test": 2,
     29     "jxl/linalg_test": 2,
     30     "jxl/modular_test": 4,
     31     "jxl/roundtrip_test": 4,
     32     "jxl/xorshift128plus_test": 2,
     33     "jxl/ac_strategy_test": 10,  # TODO(eustas): separate heavy shard
     34     "jxl/dct_test": 32,
     35     "jxl/decode_test": 10,  # TODO(eustas): separate heavy shard
     36     "jxl/fast_dct_test": 8,  # TODO(eustas): separate ultra-heavy shard
     37     "jxl/fast_math_test": 10,  # TODO(eustas): separate heavy shard
     38     "jxl/jxl_test": 10,  # TODO(eustas): separate heavy shard
     39     "jxl/render_pipeline/render_pipeline_test": 10,
     40 }
     41 
     42 libjxl_test_timeouts = {
     43     "jxl/fast_dct_test": "long",
     44     "jxl/dct_test": "long",
     45 }