tor-browser

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

moz.build (801B)


      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 UNIFIED_SOURCES += [
      8     "TestBuffer.cpp",
      9     "TestLinkedList.cpp",
     10     "TestReverseIterator.cpp",
     11     "TestSpan.cpp",
     12     "TestTainting.cpp",
     13 ]
     14 
     15 SOURCES += [
     16     "TestAlgorithm.cpp",
     17     "TestInitializedOnce.cpp",
     18     "TestMainThreadWeakPtr.cpp",
     19     "TestResultExtensions.cpp",
     20 ]
     21 
     22 if not CONFIG["MOZILLA_OFFICIAL"]:
     23     UNIFIED_SOURCES += [
     24         # MOZ_DBG is not defined in MOZILLA_OFFICIAL builds.
     25         "TestMozDbg.cpp",
     26     ]
     27 
     28 # LOCAL_INCLUDES += [
     29 #    "../../base",
     30 # ]
     31 
     32 FINAL_LIBRARY = "xul-gtest"