tor-browser

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

moz.build (788B)


      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 EXPORTS += [
      8     "OggCodecState.h",
      9     "OggCodecStore.h",
     10     "OggDecoder.h",
     11     "OggDemuxer.h",
     12     "OggRLBox.h",
     13     "OggRLBoxTypes.h",
     14     "OggWriter.h",
     15     "OpusParser.h",
     16 ]
     17 
     18 UNIFIED_SOURCES += [
     19     "OggCodecState.cpp",
     20     "OggCodecStore.cpp",
     21     "OggDecoder.cpp",
     22     "OggDemuxer.cpp",
     23     "OggWriter.cpp",
     24     "OpusParser.cpp",
     25 ]
     26 
     27 LOCAL_INCLUDES += ["!/security/rlbox"]
     28 
     29 FINAL_LIBRARY = "xul"
     30 
     31 # Add libFuzzer configuration directives
     32 include("/tools/fuzzing/libfuzzer-config.mozbuild")