OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 'variables': { | 6 'variables': { |
7 'conditions': [ | 7 'use_system_bzip2%': 0, |
8 [ 'OS=="linux"', { | |
9 # Link to system .so since we already use it due to GTK. | |
10 'use_system_bzip2%': 1, | |
11 }, { # OS!="linux" | |
12 'use_system_bzip2%': 0, | |
13 }], | |
14 ], | |
15 }, | 8 }, |
16 'conditions': [ | 9 'conditions': [ |
17 ['use_system_bzip2==0', { | 10 ['use_system_bzip2==0', { |
18 'targets': [ | 11 'targets': [ |
19 { | 12 { |
20 'target_name': 'bzip2', | 13 'target_name': 'bzip2', |
21 'type': '<(library)', | 14 'type': '<(library)', |
22 'defines': ['BZ_NO_STDIO'], | 15 'defines': ['BZ_NO_STDIO'], |
23 'msvs_guid': '2A70CBF0-847E-4E3A-B926-542A656DC7FE', | 16 'msvs_guid': '2A70CBF0-847E-4E3A-B926-542A656DC7FE', |
24 'sources': [ | 17 'sources': [ |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 ] | 61 ] |
69 }], | 62 }], |
70 ], | 63 ], |
71 } | 64 } |
72 | 65 |
73 # Local Variables: | 66 # Local Variables: |
74 # tab-width:2 | 67 # tab-width:2 |
75 # indent-tabs-mode:nil | 68 # indent-tabs-mode:nil |
76 # End: | 69 # End: |
77 # vim: set expandtab tabstop=2 shiftwidth=2: | 70 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |