tor-browser

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

moz.build (735B)


      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.a11y += [
      8     "AccessibleWrap.h",
      9     "MUIRootAccessibleProtocol.h",
     10 ]
     11 
     12 SOURCES += [
     13     "AccessibleWrap.mm",
     14     "MUIAccessible.mm",
     15     "MUIRootAccessible.mm",
     16     "Platform.mm",
     17     "RootAccessibleWrap.mm",
     18 ]
     19 
     20 LOCAL_INCLUDES += [
     21     "/accessible/base",
     22     "/accessible/generic",
     23     "/accessible/html",
     24     "/accessible/ipc",
     25     "/accessible/xul",
     26 ]
     27 
     28 FINAL_LIBRARY = "xul"
     29 
     30 include("/ipc/chromium/chromium-config.mozbuild")