| 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 config("ssl_config") { | 5 config("ssl_config") { |
| 6 include_dirs = [ | 6 include_dirs = [ |
| 7 "//net/third_party/nss/ssl", | 7 "//net/third_party/nss/ssl", |
| 8 ] | 8 ] |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "ssl/unix_err.h", | 77 "ssl/unix_err.h", |
| 78 ] | 78 ] |
| 79 } else { | 79 } else { |
| 80 sources -= [ | 80 sources -= [ |
| 81 "ssl/win32err.c", | 81 "ssl/win32err.c", |
| 82 "ssl/win32err.h", | 82 "ssl/win32err.h", |
| 83 ] | 83 ] |
| 84 } | 84 } |
| 85 | 85 |
| 86 if (is_linux) { | 86 if (is_linux) { |
| 87 include_dirs = [ "bodge" ] | 87 include_dirs = [ "ssl/bodge" ] |
| 88 configs += [ "//third_party/nss:nss_linux_config" ] | 88 configs += [ "//third_party/nss:nss_linux_config" ] |
| 89 } | 89 } |
| 90 if (is_mac) { | 90 if (is_mac) { |
| 91 sources -= [ "ssl/bodge/secitem_array.c" ] | 91 sources -= [ "ssl/bodge/secitem_array.c" ] |
| 92 } | 92 } |
| 93 } | 93 } |
| OLD | NEW |