| 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 { | 5 { |
| 6 'includes': [ | 6 'includes': [ |
| 7 '../../build/win_precompile.gypi', | 7 '../../build/win_precompile.gypi', |
| 8 ], | 8 ], |
| 9 'variables': { | 9 'variables': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 128 ], | 128 ], |
| 129 'direct_dependent_settings': { | 129 'direct_dependent_settings': { |
| 130 'include_dirs': [ | 130 'include_dirs': [ |
| 131 'src', | 131 'src', |
| 132 ], | 132 ], |
| 133 }, | 133 }, |
| 134 'dependencies': [ | 134 'dependencies': [ |
| 135 '../../third_party/icu/icu.gyp:icuuc', | 135 '../../third_party/icu/icu.gyp:icuuc', |
| 136 ], | 136 ], |
| 137 'variables': { | 137 'variables': { |
| 138 'clang_warning_flags': [ '-Wno-unused-value', ], | 138 'clang_warning_flags': [ |
| 139 '-Wno-unused-value', |
| 140 # Harfbuzz uses unused typedefs for its static asserts (and its |
| 141 # static asserts are strange enough that they can't be replaced |
| 142 # by static_assert). |
| 143 '-Wno-unused-local-typedef', |
| 144 ], |
| 139 }, | 145 }, |
| 140 'conditions': [ | 146 'conditions': [ |
| 141 ['OS=="win"', { | 147 ['OS=="win"', { |
| 142 # TODO(eae): C4267 on amd64. size_t -> int, size_t -> unsigned int | 148 # TODO(eae): C4267 on amd64. size_t -> int, size_t -> unsigned int |
| 143 'msvs_disabled_warnings': [4267, 4334], | 149 'msvs_disabled_warnings': [4267, 4334], |
| 144 }], | 150 }], |
| 145 ['OS=="mac"', { | 151 ['OS=="mac"', { |
| 146 'defines': [ | 152 'defines': [ |
| 147 'HAVE_CORETEXT', | 153 'HAVE_CORETEXT', |
| 148 ], | 154 ], |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 197 ], | 203 ], |
| 198 'libraries': [ | 204 'libraries': [ |
| 199 '<!@(<(pkg-config) --libs-only-l harfbuzz)', | 205 '<!@(<(pkg-config) --libs-only-l harfbuzz)', |
| 200 ], | 206 ], |
| 201 }, | 207 }, |
| 202 }, | 208 }, |
| 203 ], | 209 ], |
| 204 }], | 210 }], |
| 205 ], | 211 ], |
| 206 } | 212 } |
| OLD | NEW |