Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(626)

Side by Side Diff: third_party/harfbuzz-ng/harfbuzz.gyp

Issue 1236863009: clang/win: Enable -Wunused-local-typedef (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: unsetupset Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/harfbuzz-ng/BUILD.gn ('k') | third_party/mesa/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/BUILD.gn ('k') | third_party/mesa/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698