| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 { | 5 { |
| 6 'targets': [ | 6 'targets': [ |
| 7 { | 7 { |
| 8 'target_name': 'openssl', | 8 'target_name': 'openssl', |
| 9 'type': '<(library)', | 9 'type': 'static_library', |
| 10 'defines': [ | 10 'defines': [ |
| 11 'L_ENDIAN', | 11 'L_ENDIAN', |
| 12 'OPENSSL_THREADS', | 12 'OPENSSL_THREADS', |
| 13 'PURIFY', | 13 'PURIFY', |
| 14 'TERMIO', | 14 'TERMIO', |
| 15 '_REENTRANT', | 15 '_REENTRANT', |
| 16 # We do not use TLS over UDP on Chromium so far. | 16 # We do not use TLS over UDP on Chromium so far. |
| 17 'OPENSSL_NO_DTLS1', | 17 'OPENSSL_NO_DTLS1', |
| 18 ], | 18 ], |
| 19 'sources': [ | 19 'sources': [ |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 677 }, | 677 }, |
| 678 }, | 678 }, |
| 679 ], | 679 ], |
| 680 } | 680 } |
| 681 | 681 |
| 682 # Local Variables: | 682 # Local Variables: |
| 683 # tab-width:2 | 683 # tab-width:2 |
| 684 # indent-tabs-mode:nil | 684 # indent-tabs-mode:nil |
| 685 # End: | 685 # End: |
| 686 # vim: set expandtab tabstop=2 shiftwidth=2: | 686 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |