tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

moz.yaml (1381B)


      1 schema: 1
      2 
      3 bugzilla:
      4  product: Toolkit
      5  component: "General"
      6 
      7 origin:
      8  name: brotli
      9  description: generic-purpose lossless compression algorithm
     10 
     11  url: https://github.com/google/brotli
     12 
     13  release: 028fb5a23661f123017c060daa546b55cf4bde29 (2025-10-27T13:07:48Z).
     14  revision: 028fb5a23661f123017c060daa546b55cf4bde29
     15 
     16  license: MIT
     17 
     18 vendoring:
     19  url: https://github.com/google/brotli
     20  source-hosting: github
     21  tracking: commit
     22 
     23  exclude:
     24    - ".*"
     25    - "*"
     26    - docs
     27    - go
     28    - python
     29    - scripts
     30    - tests
     31    - c/tools
     32 
     33  include:
     34    - c/include/
     35    - c/common/
     36    - c/dec/
     37    - c/enc/
     38 
     39  keep:
     40    - LICENSE
     41 
     42  update-actions:
     43    - action: move-dir
     44      from: '{vendor_dir}/c/include'
     45      to: '{vendor_dir}/include'
     46    - action: move-dir
     47      from: '{vendor_dir}/c/common'
     48      to: '{vendor_dir}/common'
     49    - action: move-dir
     50      from: '{vendor_dir}/c/dec'
     51      to: '{vendor_dir}/dec'
     52    - action: move-dir
     53      from: '{vendor_dir}/c/enc'
     54      to: '{vendor_dir}/enc'
     55    # To prevent the build error:
     56    # enc/static_init.c from UNIFIED_SOURCES would have the same object name as
     57    # dec/static_init.c from UNIFIED_SOURCES in non-unified builds.
     58    # See bug 1733308.
     59    - action: move-file
     60      from: '{vendor_dir}/enc/static_init.c'
     61      to: '{vendor_dir}/enc/static_init_enc.c'
     62    - action: delete-path
     63      path: '{vendor_dir}/c'