tor-browser

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

chromium-config.mozbuild (990B)


      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 LOCAL_INCLUDES += [
      8     "!/ipc/ipdl/_ipdlheaders",
      9     "/ipc/chromium/src",
     10 ]
     11 
     12 if CONFIG["OS_TARGET"] == "Linux":
     13     LOCAL_INCLUDES += [
     14         "/toolkit/components/telemetry",
     15         "/xpcom/base",
     16     ]
     17 
     18 if CONFIG["OS_ARCH"] == "WINNT":
     19     OS_LIBS += [
     20         "shell32",
     21         "dbghelp",
     22     ]
     23 
     24     DEFINES["UNICODE"] = True
     25     DEFINES["_UNICODE"] = True
     26     DEFINES["_CRT_RAND_S"] = True
     27     DEFINES["CERT_CHAIN_PARA_HAS_EXTRA_FIELDS"] = True
     28     DEFINES["_SECURE_ATL"] = True
     29     DEFINES["CHROMIUM_BUILD"] = True
     30     DEFINES["U_STATIC_IMPLEMENTATION"] = True
     31     DEFINES["WIN32"] = True
     32     DEFINES["_WIN32"] = True
     33     DEFINES["_WINDOWS"] = True
     34     DEFINES["WIN32_LEAN_AND_MEAN"] = True