tor-browser

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

moz.build (926B)


      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 XPIDL_SOURCES += [
      8     "nsIBFCacheEntry.idl",
      9     "nsISHEntry.idl",
     10     "nsISHistory.idl",
     11     "nsISHistoryListener.idl",
     12 ]
     13 
     14 XPIDL_MODULE = "shistory"
     15 
     16 EXPORTS += [
     17     "nsSHEntry.h",
     18     "nsSHEntryShared.h",
     19     "nsSHistory.h",
     20 ]
     21 
     22 EXPORTS.mozilla.dom += [
     23     "ChildSHistory.h",
     24     "EntryList.h",
     25     "SessionHistoryEntry.h",
     26 ]
     27 
     28 UNIFIED_SOURCES += [
     29     "ChildSHistory.cpp",
     30     "EntryList.cpp",
     31     "nsSHEntry.cpp",
     32     "nsSHEntryShared.cpp",
     33     "nsSHistory.cpp",
     34     "SessionHistoryEntry.cpp",
     35 ]
     36 
     37 LOCAL_INCLUDES += [
     38     "/docshell/base",
     39     "/dom/base",
     40 ]
     41 
     42 FINAL_LIBRARY = "xul"
     43 
     44 include("/ipc/chromium/chromium-config.mozbuild")