tor-browser

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

moz.build (749B)


      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     'alpha_dec.c',
      9     'buffer_dec.c',
     10     'frame_dec.c',
     11     'idec_dec.c',
     12     'io_dec.c',
     13     'quant_dec.c',
     14     'tree_dec.c',
     15     'vp8_dec.c',
     16     'vp8l_dec.c',
     17     'webp_dec.c',
     18 ]
     19 
     20 LOCAL_INCLUDES += [
     21     '/media/libwebp',
     22 ]
     23 
     24 # Add libFuzzer configuration directives
     25 include('/tools/fuzzing/libfuzzer-config.mozbuild')
     26 
     27 FINAL_LIBRARY = 'xul'
     28 
     29 # We allow warnings for third-party code that can be updated from upstream.
     30 AllowCompilerWarnings()