tor-browser

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

moz.build (916B)


      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: Core & HTML")
      9 
     10 EXPORTS.mozilla.dom += [
     11     "PrivateAttribution.h",
     12     "PrivateAttributionIPCUtils.h",
     13 ]
     14 
     15 UNIFIED_SOURCES += [
     16     "PrivateAttribution.cpp",
     17 ]
     18 
     19 XPIDL_SOURCES += [
     20     "nsIPrivateAttributionService.idl",
     21 ]
     22 
     23 XPIDL_MODULE = "privateattribution"
     24 
     25 XPCOM_MANIFESTS += [
     26     "components.conf",
     27 ]
     28 
     29 XPCSHELL_TESTS_MANIFESTS += [
     30     "tests/xpcshell/xpcshell.toml",
     31 ]
     32 
     33 MOCHITEST_MANIFESTS += ["tests/mochitest/mochitest.toml"]
     34 
     35 EXTRA_JS_MODULES += [
     36     "PrivateAttributionService.sys.mjs",
     37 ]
     38 
     39 include("/ipc/chromium/chromium-config.mozbuild")
     40 
     41 FINAL_LIBRARY = "xul"