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 'includes': [ | |
7 '../../build/common.gypi', | |
8 ], | |
9 'variables': { | 6 'variables': { |
10 'use_system_zlib%': 0, | 7 'use_system_zlib%': 0, |
11 }, | 8 }, |
12 'conditions': [ | 9 'conditions': [ |
13 ['use_system_zlib==0', { | 10 ['use_system_zlib==0', { |
14 'targets': [ | 11 'targets': [ |
15 { | 12 { |
16 'target_name': 'zlib', | 13 'target_name': 'zlib', |
17 'type': '<(library)', | 14 'type': '<(library)', |
18 'msvs_guid': '8423AF0D-4B88-4EBF-94E1-E4D00D00E21C', | 15 'msvs_guid': '8423AF0D-4B88-4EBF-94E1-E4D00D00E21C', |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
93 'link_settings': { | 90 'link_settings': { |
94 'libraries': [ | 91 'libraries': [ |
95 '-lz', | 92 '-lz', |
96 ], | 93 ], |
97 }, | 94 }, |
98 }, | 95 }, |
99 ], | 96 ], |
100 }], | 97 }], |
101 ], | 98 ], |
102 } | 99 } |
OLD | NEW |