tor-browser

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

moz.build (897B)


      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 XPIDL_SOURCES += [
      8     "IPeerConnection.idl",
      9 ]
     10 
     11 XPIDL_MODULE = "peerconnection"
     12 
     13 SOURCES += [
     14     "MediaModule.cpp",
     15 ]
     16 
     17 LOCAL_INCLUDES += [
     18     "!/ipc/ipdl/_ipdlheaders",
     19     "/dom/media/webrtc/",
     20     "/dom/media/webrtc/common/time_profiling",
     21     "/dom/media/webrtc/jsapi",
     22     "/dom/media/webrtc/libwebrtcglue",
     23     "/dom/media/webrtc/transport",
     24     "/dom/media/webrtc/transportbridge",
     25     "/ipc/chromium/src",
     26     "/media/webrtc/",
     27     "/third_party/abseil-cpp",
     28     "/third_party/libwebrtc",
     29 ]
     30 
     31 if CONFIG["MOZ_WEBRTC"]:
     32     XPCOM_MANIFESTS += [
     33         "components.conf",
     34     ]
     35 
     36 FINAL_LIBRARY = "xul"