tor-browser

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

moz.build (882B)


      1 # -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
      2 # vim: set filetype=python:
      3 # This Source Code Form is subject to the terms of the Mozilla Public
      4 # License, v. 2.0. If a copy of the MPL was not distributed with this
      5 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      6 
      7 SOURCES += [
      8     'bit_reader_utils.c',
      9     'bit_writer_utils.c',
     10     'color_cache_utils.c',
     11     'filters_utils.c',
     12     'huffman_encode_utils.c',
     13     'huffman_utils.c',
     14     'palette.c',
     15     'quant_levels_dec_utils.c',
     16     'quant_levels_utils.c',
     17     'random_utils.c',
     18     'rescaler_utils.c',
     19     'thread_utils.c',
     20     'utils.c',
     21 ]
     22 
     23 LOCAL_INCLUDES += [
     24     '/media/libwebp',
     25 ]
     26 
     27 # Add libFuzzer configuration directives
     28 include('/tools/fuzzing/libfuzzer-config.mozbuild')
     29 
     30 FINAL_LIBRARY = 'xul'
     31 
     32 # We allow warnings for third-party code that can be updated from upstream.
     33 AllowCompilerWarnings()