• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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
5import("//build/config/linux/pkg_config.gni")
6
7if (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}
19