tor-browser

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

moz.build (1092B)


      1 # vim: set filetype=python:
      2 # This Source Code Form is subject to the terms of the Mozilla Public
      3 # License, v. 2.0. If a copy of the MPL was not distributed with this
      4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
      5 
      6 EXPORTS.mozilla.dom += [
      7     "AudioFocusManager.h",
      8     "ContentMediaController.h",
      9     "ContentPlaybackController.h",
     10     "FetchImageHelper.h",
     11     "MediaControlKeyManager.h",
     12     "MediaControlKeySource.h",
     13     "MediaController.h",
     14     "MediaControlService.h",
     15     "MediaControlUtils.h",
     16     "MediaPlaybackStatus.h",
     17     "MediaStatusManager.h",
     18 ]
     19 
     20 EXPORTS.ipc += [
     21     "MediaControlIPC.h",
     22 ]
     23 
     24 UNIFIED_SOURCES += [
     25     "AudioFocusManager.cpp",
     26     "ContentMediaController.cpp",
     27     "ContentPlaybackController.cpp",
     28     "FetchImageHelper.cpp",
     29     "MediaControlKeyManager.cpp",
     30     "MediaControlKeySource.cpp",
     31     "MediaController.cpp",
     32     "MediaControlService.cpp",
     33     "MediaControlUtils.cpp",
     34     "MediaPlaybackStatus.cpp",
     35     "MediaStatusManager.cpp",
     36 ]
     37 
     38 include("/ipc/chromium/chromium-config.mozbuild")
     39 
     40 TEST_DIRS += ["tests/gtest"]
     41 
     42 FINAL_LIBRARY = "xul"