tor-browser

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

moz.build (1074B)


      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     "FileSystemAccessHandleChild.h",
      9     "FileSystemAccessHandleControlChild.h",
     10     "FileSystemManagerChild.h",
     11     "FileSystemWritableFileStreamChild.h",
     12 ]
     13 
     14 UNIFIED_SOURCES += [
     15     "FileSystemAccessHandleChild.cpp",
     16     "FileSystemAccessHandleControlChild.cpp",
     17     "FileSystemAsyncCopy.cpp",
     18     "FileSystemBackgroundRequestHandler.cpp",
     19     "FileSystemChildFactory.cpp",
     20     "FileSystemDirectoryIteratorFactory.cpp",
     21     "FileSystemManagerChild.cpp",
     22     "FileSystemRequestHandler.cpp",
     23     "FileSystemShutdownBlocker.cpp",
     24     "FileSystemThreadSafeStreamOwner.cpp",
     25     "FileSystemWritableFileStreamChild.cpp",
     26 ]
     27 
     28 LOCAL_INCLUDES += [
     29     "/dom/fs/include",
     30     "/netwerk/base",
     31 ]
     32 
     33 FINAL_LIBRARY = "xul"
     34 
     35 include("/ipc/chromium/chromium-config.mozbuild")