tor-browser

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

BUILD.gn (521B)


      1 # Copyright 2014 The Chromium Authors
      2 # Use of this source code is governed by a BSD-style license that can be
      3 # found in the LICENSE file.
      4 
      5 import("//chromium/build/config/linux/pkg_config.gni")
      6 
      7 if (is_linux || is_chromeos) {
      8   # This is a dependency on NSS with no libssl3. On Linux and Chrome OS, we use
      9   # NSS for platform certificate integration. We use our own TLS library, so
     10   # exclude the one from NSS.
     11   pkg_config("nss") {
     12     packages = [ "nss" ]
     13     extra_args = [
     14       "-v",
     15       "-lssl3",
     16     ]
     17   }
     18 }