| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
| 6 | 6 |
| 7 if (is_linux) { | 7 if (is_linux) { |
| 8 # This is a dependency on NSS with no libssl. On Linux we use a built-in SSL | 8 # This is a dependency on NSS with no libssl. On Linux we use a built-in SSL |
| 9 # library but the system NSS libraries. Non-Linux platforms using NSS use the | 9 # library but the system NSS libraries. Non-Linux platforms using NSS use the |
| 10 # hermetic one in //third_party/nss. | 10 # hermetic one in //third_party/nss. |
| (...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 906 "nss/lib/ssl", | 906 "nss/lib/ssl", |
| 907 ] | 907 ] |
| 908 | 908 |
| 909 if (is_win) { | 909 if (is_win) { |
| 910 cflags += [ "/wd4101" ] # Unreferenced local variable. | 910 cflags += [ "/wd4101" ] # Unreferenced local variable. |
| 911 } | 911 } |
| 912 | 912 |
| 913 if (include_nss_libpkix) { | 913 if (include_nss_libpkix) { |
| 914 sources += [ | 914 sources += [ |
| 915 "nss/lib/certhigh/certvfypkix.c", | 915 "nss/lib/certhigh/certvfypkix.c", |
| 916 "nss/lib/certhigh/certvfypkixprint.c", | |
| 917 "nss/lib/libpkix/include/pkix.h", | 916 "nss/lib/libpkix/include/pkix.h", |
| 918 "nss/lib/libpkix/include/pkix_certsel.h", | 917 "nss/lib/libpkix/include/pkix_certsel.h", |
| 919 "nss/lib/libpkix/include/pkix_certstore.h", | 918 "nss/lib/libpkix/include/pkix_certstore.h", |
| 920 "nss/lib/libpkix/include/pkix_checker.h", | 919 "nss/lib/libpkix/include/pkix_checker.h", |
| 921 "nss/lib/libpkix/include/pkix_crlsel.h", | 920 "nss/lib/libpkix/include/pkix_crlsel.h", |
| 922 "nss/lib/libpkix/include/pkix_errorstrings.h", | 921 "nss/lib/libpkix/include/pkix_errorstrings.h", |
| 923 "nss/lib/libpkix/include/pkix_params.h", | 922 "nss/lib/libpkix/include/pkix_params.h", |
| 924 "nss/lib/libpkix/include/pkix_pl_pki.h", | 923 "nss/lib/libpkix/include/pkix_pl_pki.h", |
| 925 "nss/lib/libpkix/include/pkix_pl_system.h", | 924 "nss/lib/libpkix/include/pkix_pl_system.h", |
| 926 "nss/lib/libpkix/include/pkix_results.h", | 925 "nss/lib/libpkix/include/pkix_results.h", |
| (...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1202 deps = [ | 1201 deps = [ |
| 1203 ":nspr", | 1202 ":nspr", |
| 1204 "//third_party/sqlite", | 1203 "//third_party/sqlite", |
| 1205 ] | 1204 ] |
| 1206 | 1205 |
| 1207 if (is_win && current_cpu == "x86") { | 1206 if (is_win && current_cpu == "x86") { |
| 1208 deps += [ ":nss_static_avx" ] | 1207 deps += [ ":nss_static_avx" ] |
| 1209 } | 1208 } |
| 1210 } | 1209 } |
| 1211 } # Windows/Mac/iOS. | 1210 } # Windows/Mac/iOS. |
| OLD | NEW |