| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'conditions': [ | 6 'conditions': [ |
| 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { | 7 [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd"', { |
| 8 'conditions': [ | 8 'conditions': [ |
| 9 ['sysroot!=""', { | 9 ['sysroot!=""', { |
| 10 'variables': { | 10 'variables': { |
| 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"'
, | 11 'pkg-config': '../../../build/linux/pkg-config-wrapper "<(sysroot)"'
, |
| 12 }, | 12 }, |
| 13 }, { | 13 }, { |
| 14 'variables': { | 14 'variables': { |
| 15 'pkg-config': 'pkg-config' | 15 'pkg-config': 'pkg-config' |
| 16 }, | 16 }, |
| 17 }], | 17 }], |
| 18 ], | 18 ], |
| 19 }], | 19 }], |
| 20 ], | 20 ], |
| 21 | 21 |
| 22 'targets': [ | 22 'targets': [ |
| 23 { | 23 { |
| 24 'target_name': 'ssl', | 24 'target_name': 'ssl', |
| 25 'product_name': 'ssl', | 25 'product_name': 'ssl', |
| 26 'type': '<(library)', | 26 'type': 'static_library', |
| 27 'sources': [ | 27 'sources': [ |
| 28 'ssl/authcert.c', | 28 'ssl/authcert.c', |
| 29 'ssl/cmpcert.c', | 29 'ssl/cmpcert.c', |
| 30 'ssl/derive.c', | 30 'ssl/derive.c', |
| 31 'ssl/fnv1a64.c', | 31 'ssl/fnv1a64.c', |
| 32 'ssl/nsskea.c', | 32 'ssl/nsskea.c', |
| 33 'ssl/os2_err.c', | 33 'ssl/os2_err.c', |
| 34 'ssl/os2_err.h', | 34 'ssl/os2_err.h', |
| 35 'ssl/preenc.h', | 35 'ssl/preenc.h', |
| 36 'ssl/prelib.c', | 36 'ssl/prelib.c', |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 }, | 157 }, |
| 158 }, | 158 }, |
| 159 ], | 159 ], |
| 160 } | 160 } |
| 161 | 161 |
| 162 # Local Variables: | 162 # Local Variables: |
| 163 # tab-width:2 | 163 # tab-width:2 |
| 164 # indent-tabs-mode:nil | 164 # indent-tabs-mode:nil |
| 165 # End: | 165 # End: |
| 166 # vim: set expandtab tabstop=2 shiftwidth=2: | 166 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |