| 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 'variables': { | 10 'variables': { |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 'src', | 138 'src', |
| 139 ], | 139 ], |
| 140 'direct_dependent_settings': { | 140 'direct_dependent_settings': { |
| 141 'include_dirs': [ | 141 'include_dirs': [ |
| 142 'src', | 142 'src', |
| 143 ], | 143 ], |
| 144 }, | 144 }, |
| 145 'dependencies': [ | 145 'dependencies': [ |
| 146 '../../third_party/icu/icu.gyp:icuuc', | 146 '../../third_party/icu/icu.gyp:icuuc', |
| 147 ], | 147 ], |
| 148 'variables': { |
| 149 'clang_warning_flags': [ '-Wno-unused-value', ], |
| 150 }, |
| 148 'conditions': [ | 151 'conditions': [ |
| 149 ['clang==1', { | |
| 150 'xcode_settings': { | |
| 151 'WARNING_CFLAGS': [ | |
| 152 '-Wno-unused-value', | |
| 153 ], | |
| 154 }, | |
| 155 'cflags': [ | |
| 156 '-Wno-unused-value', | |
| 157 ] | |
| 158 }], | |
| 159 ['OS=="win"', { | 152 ['OS=="win"', { |
| 160 # TODO(eae): C4267 on amd64. size_t -> int, size_t -> unsigned int | 153 # TODO(eae): C4267 on amd64. size_t -> int, size_t -> unsigned int |
| 161 'msvs_disabled_warnings': [4267, 4334], | 154 'msvs_disabled_warnings': [4267, 4334], |
| 162 }], | 155 }], |
| 163 ['OS=="mac"', { | 156 ['OS=="mac"', { |
| 164 'defines': [ | 157 'defines': [ |
| 165 'HAVE_CORETEXT', | 158 'HAVE_CORETEXT', |
| 166 ], | 159 ], |
| 167 'sources': [ | 160 'sources': [ |
| 168 'src/hb-coretext.cc', | 161 'src/hb-coretext.cc', |
| (...skipping 22 matching lines...) Expand all Loading... |
| 191 ], | 184 ], |
| 192 'libraries': [ | 185 'libraries': [ |
| 193 '<!@(<(pkg-config) --libs-only-l harfbuzz)', | 186 '<!@(<(pkg-config) --libs-only-l harfbuzz)', |
| 194 ], | 187 ], |
| 195 }, | 188 }, |
| 196 }, | 189 }, |
| 197 ], | 190 ], |
| 198 }], | 191 }], |
| 199 ], | 192 ], |
| 200 } | 193 } |
| OLD | NEW |