| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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': '<(library)', |
| 10 'defines': [ | 10 'defines': [ |
| 11 # ENGINESDIR must be defined if OPENSSLDIR is. |
| 12 'ENGINESDIR="/dev/null"', |
| 11 'L_ENDIAN', | 13 'L_ENDIAN', |
| 14 'OPENSSLDIR="/etc/ssl"', |
| 12 'OPENSSL_THREADS', | 15 'OPENSSL_THREADS', |
| 13 'PURIFY', | 16 'PURIFY', |
| 14 'TERMIO', | 17 'TERMIO', |
| 15 '_REENTRANT', | 18 '_REENTRANT', |
| 16 ], | 19 ], |
| 17 'copts': [ | 20 'copts': [ |
| 18 '-w', | 21 '-w', |
| 19 '-Wno-cast-qual', | 22 '-Wno-cast-qual', |
| 20 '-Wno-error', | 23 '-Wno-error', |
| 21 ], | 24 ], |
| (...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 602 }, | 605 }, |
| 603 }, | 606 }, |
| 604 ], | 607 ], |
| 605 } | 608 } |
| 606 | 609 |
| 607 # Local Variables: | 610 # Local Variables: |
| 608 # tab-width:2 | 611 # tab-width:2 |
| 609 # indent-tabs-mode:nil | 612 # indent-tabs-mode:nil |
| 610 # End: | 613 # End: |
| 611 # vim: set expandtab tabstop=2 shiftwidth=2: | 614 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |