tor-browser

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

moz.build (1253B)


      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.mozilla.dom += [
      8     "HTMLTrackElement.h",
      9     "TextTrack.h",
     10     "TextTrackCue.h",
     11     "TextTrackCueList.h",
     12     "TextTrackList.h",
     13     "TextTrackManager.h",
     14     "TextTrackRegion.h",
     15     "WebVTTListener.h",
     16 ]
     17 
     18 UNIFIED_SOURCES += [
     19     "HTMLTrackElement.cpp",
     20     "TextTrack.cpp",
     21     "TextTrackCue.cpp",
     22     "TextTrackCueList.cpp",
     23     "TextTrackList.cpp",
     24     "TextTrackManager.cpp",
     25     "TextTrackRegion.cpp",
     26     "WebVTTListener.cpp",
     27 ]
     28 
     29 XPIDL_SOURCES += [
     30     "nsIWebVTTListener.idl",
     31     "nsIWebVTTParserWrapper.idl",
     32 ]
     33 
     34 XPIDL_MODULE = "webvtt"
     35 
     36 EXTRA_JS_MODULES += [
     37     "WebVTTParserWrapper.sys.mjs",
     38 ]
     39 
     40 XPCOM_MANIFESTS += [
     41     "components.conf",
     42 ]
     43 
     44 EXTRA_JS_MODULES += [
     45     "vtt.sys.mjs",
     46 ]
     47 
     48 XPCSHELL_TESTS_MANIFESTS += ["test/xpcshell/xpcshell.toml"]
     49 
     50 MOCHITEST_MANIFESTS += ["test/mochitest/mochitest.toml"]
     51 
     52 REFTEST_MANIFESTS += ["test/reftest/reftest.list"]
     53 
     54 CRASHTEST_MANIFESTS += ["test/crashtests/crashtests.list"]
     55 
     56 FINAL_LIBRARY = "xul"