| 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 ['sysroot!=""', { | 7 ['sysroot!=""', { |
| 8 'variables': { | 8 'variables': { |
| 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', | 9 'pkg-config': './pkg-config-wrapper "<(sysroot)"', |
| 10 }, | 10 }, |
| 11 }, { | 11 }, { |
| 12 'variables': { | 12 'variables': { |
| 13 'pkg-config': 'pkg-config' | 13 'pkg-config': 'pkg-config' |
| 14 }, | 14 }, |
| 15 }], | 15 }], |
| 16 [ 'OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 16 [ 'os_posix==1 and OS!="mac"', { |
| 17 'variables': { | 17 'variables': { |
| 18 # We use our own copy of libssl3, although we still need to link against | 18 # We use our own copy of libssl3, although we still need to link against |
| 19 # the rest of NSS. | 19 # the rest of NSS. |
| 20 'use_system_ssl%': 0, | 20 'use_system_ssl%': 0, |
| 21 }, | 21 }, |
| 22 }, { # OS!="linux" | 22 }, { |
| 23 'variables': { | 23 'variables': { |
| 24 'use_system_ssl%': 1, | 24 'use_system_ssl%': 1, |
| 25 }, | 25 }, |
| 26 }], | 26 }], |
| 27 ], | 27 ], |
| 28 | 28 |
| 29 | 29 |
| 30 'targets': [ | 30 'targets': [ |
| 31 { | 31 { |
| 32 'target_name': 'gtk', | 32 'target_name': 'gtk', |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 389 ], | 389 ], |
| 390 }, | 390 }, |
| 391 ], | 391 ], |
| 392 } | 392 } |
| 393 | 393 |
| 394 # Local Variables: | 394 # Local Variables: |
| 395 # tab-width:2 | 395 # tab-width:2 |
| 396 # indent-tabs-mode:nil | 396 # indent-tabs-mode:nil |
| 397 # End: | 397 # End: |
| 398 # vim: set expandtab tabstop=2 shiftwidth=2: | 398 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |