| 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 'use_system_zlib%': 0, | 7 'use_system_zlib%': 0, |
| 8 }, | 8 }, |
| 9 'conditions': [ | 9 'conditions': [ |
| 10 ['use_system_zlib==0', { | 10 ['use_system_zlib==0', { |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 # For contrib/minizip | 51 # For contrib/minizip |
| 52 '../..', | 52 '../..', |
| 53 ], | 53 ], |
| 54 'direct_dependent_settings': { | 54 'direct_dependent_settings': { |
| 55 'include_dirs': [ | 55 'include_dirs': [ |
| 56 '.', | 56 '.', |
| 57 ], | 57 ], |
| 58 }, | 58 }, |
| 59 'conditions': [ | 59 'conditions': [ |
| 60 ['OS!="win"', { | 60 ['OS!="win"', { |
| 61 'product_name': 'z', | 61 'product_name': 'chrome_zlib', |
| 62 'sources!': [ | 62 'sources!': [ |
| 63 'contrib/minizip/iowin32.c' | 63 'contrib/minizip/iowin32.c' |
| 64 ], | 64 ], |
| 65 }], | 65 }], |
| 66 ], | 66 ], |
| 67 }, | 67 }, |
| 68 ], | 68 ], |
| 69 }, { | 69 }, { |
| 70 'targets': [ | 70 'targets': [ |
| 71 { | 71 { |
| (...skipping 24 matching lines...) Expand all Loading... |
| 96 ], | 96 ], |
| 97 }], | 97 }], |
| 98 ], | 98 ], |
| 99 } | 99 } |
| 100 | 100 |
| 101 # Local Variables: | 101 # Local Variables: |
| 102 # tab-width:2 | 102 # tab-width:2 |
| 103 # indent-tabs-mode:nil | 103 # indent-tabs-mode:nil |
| 104 # End: | 104 # End: |
| 105 # vim: set expandtab tabstop=2 shiftwidth=2: | 105 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |