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

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

Issue 429793006: Update several clang warnings after r287092. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | third_party/libjingle/libjingle.gyp » ('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 'variables': { 10 'variables': {
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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 }
OLDNEW
« no previous file with comments | « no previous file | third_party/libjingle/libjingle.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698