| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 5 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 6 # for details. All rights reserved. Use of this source code is governed by a | 6 # for details. All rights reserved. Use of this source code is governed by a |
| 7 # BSD-style license that can be found in the LICENSE file. | 7 # BSD-style license that can be found in the LICENSE file. |
| 8 | 8 |
| 9 # This file is a modified copy of | 9 # This file is a modified copy of |
| 10 # https://chromium.googlesource.com/chromium/src/third_party/zlib/zlib.gyp | 10 # https://chromium.googlesource.com/chromium/src/third_party/zlib/zlib.gyp |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 '<(zlib_path)/zutil.h', | 57 '<(zlib_path)/zutil.h', |
| 58 ], | 58 ], |
| 59 'include_dirs': [ | 59 'include_dirs': [ |
| 60 '<(zlib_path)/.', | 60 '<(zlib_path)/.', |
| 61 ], | 61 ], |
| 62 'direct_dependent_settings': { | 62 'direct_dependent_settings': { |
| 63 'include_dirs': [ | 63 'include_dirs': [ |
| 64 '<(zlib_path)/.', | 64 '<(zlib_path)/.', |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 'conditions': [ | |
| 68 ['OS!="win"', { | |
| 69 'product_name': 'chrome_zlib', | |
| 70 }], | |
| 71 ], | |
| 72 }, | 67 }, |
| 73 ], | 68 ], |
| 74 } | 69 } |
| OLD | NEW |