tor-browser

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

moz.build (947B)


      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 += [
      8     "GreekCasing.h",
      9     "ICUUtils.h",
     10     "IrishCasing.h",
     11     "nsBidiUtils.h",
     12     "nsSpecialCasingData.h",
     13     "nsUnicharUtils.h",
     14     "nsUnicodeProperties.h",
     15 ]
     16 
     17 UNIFIED_SOURCES += [
     18     "GreekCasing.cpp",
     19     "ICUUtils.cpp",
     20     "IrishCasing.cpp",
     21     "nsBidiUtils.cpp",
     22     "nsSpecialCasingData.cpp",
     23     "nsUnicharUtils.cpp",
     24     "nsUnicodeProperties.cpp",
     25 ]
     26 
     27 include("/ipc/chromium/chromium-config.mozbuild")
     28 
     29 GeneratedFile(
     30     "BaseChars.h",
     31     script="base_chars.py",
     32     inputs=["../../icu/source/data/translit/Latin_ASCII.txt"],
     33 )
     34 
     35 GeneratedFile("IsCombiningDiacritic.h", script="is_combining_diacritic.py")
     36 
     37 FINAL_LIBRARY = "xul"