| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 133 "nspr/pr/src/io/prprf.c", | 133 "nspr/pr/src/io/prprf.c", |
| 134 "nspr/pr/src/io/prscanf.c", | 134 "nspr/pr/src/io/prscanf.c", |
| 135 "nspr/pr/src/io/prsocket.c", | 135 "nspr/pr/src/io/prsocket.c", |
| 136 "nspr/pr/src/io/prstdio.c", | 136 "nspr/pr/src/io/prstdio.c", |
| 137 "nspr/pr/src/linking/prlink.c", | 137 "nspr/pr/src/linking/prlink.c", |
| 138 "nspr/pr/src/malloc/prmalloc.c", | 138 "nspr/pr/src/malloc/prmalloc.c", |
| 139 "nspr/pr/src/malloc/prmem.c", | 139 "nspr/pr/src/malloc/prmem.c", |
| 140 "nspr/pr/src/md/prosdep.c", | 140 "nspr/pr/src/md/prosdep.c", |
| 141 "nspr/pr/src/md/unix/darwin.c", | 141 "nspr/pr/src/md/unix/darwin.c", |
| 142 "nspr/pr/src/md/unix/os_Darwin.s", | 142 "nspr/pr/src/md/unix/os_Darwin.s", |
| 143 # os_Darwin_x86.s and os_Darwin_x86_64.s are included by | |
| 144 # os_Darwin.s. | |
| 145 "nspr/pr/src/md/unix/os_Darwin_x86.s", | |
| 146 "nspr/pr/src/md/unix/os_Darwin_x86_64.s", | |
| 147 "nspr/pr/src/md/unix/unix.c", | 143 "nspr/pr/src/md/unix/unix.c", |
| 148 "nspr/pr/src/md/unix/unix_errors.c", | 144 "nspr/pr/src/md/unix/unix_errors.c", |
| 149 "nspr/pr/src/md/unix/uxproces.c", | 145 "nspr/pr/src/md/unix/uxproces.c", |
| 150 "nspr/pr/src/md/unix/uxrng.c", | 146 "nspr/pr/src/md/unix/uxrng.c", |
| 151 "nspr/pr/src/md/unix/uxshm.c", | 147 "nspr/pr/src/md/unix/uxshm.c", |
| 152 "nspr/pr/src/md/unix/uxwrap.c", | 148 "nspr/pr/src/md/unix/uxwrap.c", |
| 153 "nspr/pr/src/md/windows/ntgc.c", | 149 "nspr/pr/src/md/windows/ntgc.c", |
| 154 "nspr/pr/src/md/windows/ntinrval.c", | 150 "nspr/pr/src/md/windows/ntinrval.c", |
| 155 "nspr/pr/src/md/windows/ntmisc.c", | 151 "nspr/pr/src/md/windows/ntmisc.c", |
| 156 "nspr/pr/src/md/windows/ntsec.c", | 152 "nspr/pr/src/md/windows/ntsec.c", |
| (...skipping 997 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1154 | 1150 |
| 1155 deps = [ | 1151 deps = [ |
| 1156 ":nspr", | 1152 ":nspr", |
| 1157 "//third_party/sqlite", | 1153 "//third_party/sqlite", |
| 1158 ] | 1154 ] |
| 1159 | 1155 |
| 1160 forward_dependent_configs_from = [ ":nspr" ] | 1156 forward_dependent_configs_from = [ ":nspr" ] |
| 1161 } | 1157 } |
| 1162 } # Windows/Mac/iOS. | 1158 } # Windows/Mac/iOS. |
| 1163 | 1159 |
| OLD | NEW |