tor-browser

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

moz.build (903B)


      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 with Files("**"):
      8     BUG_COMPONENT = ("Core", "DOM: Security")
      9 
     10 IPDL_SOURCES += [
     11     "PMLSTransaction.ipdl",
     12 ]
     13 
     14 EXPORTS.mozilla.dom += [
     15     "MLS.h",
     16     "MLSGroupView.h",
     17     "MLSLogging.h",
     18     "MLSTransactionChild.h",
     19     "MLSTransactionMessage.h",
     20     "MLSTransactionParent.h",
     21     "MLSTypeUtils.h",
     22 ]
     23 
     24 UNIFIED_SOURCES += [
     25     "MLS.cpp",
     26     "MLSGroupView.cpp",
     27     "MLSTransactionChild.cpp",
     28     "MLSTransactionMessage.cpp",
     29     "MLSTransactionParent.cpp",
     30     "MLSTypeUtils.cpp",
     31 ]
     32 
     33 include("/ipc/chromium/chromium-config.mozbuild")
     34 
     35 FINAL_LIBRARY = "xul"
     36 
     37 MOCHITEST_MANIFESTS += ["tests/mochitest.toml"]