diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-27 23:57:47 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-03-27 23:57:47 +0000 |
commit | 54150ef19ae35643bb1cbc78da4e8a9da482bce7 (patch) | |
tree | 6622234eaea9bd176edd9dfa3954eec50c9bcfb6 /third_party | |
parent | 6459800aa78a31d2698c320aba41e3813eaf5e89 (diff) | |
download | chromium_src-54150ef19ae35643bb1cbc78da4e8a9da482bce7.zip chromium_src-54150ef19ae35643bb1cbc78da4e8a9da482bce7.tar.gz chromium_src-54150ef19ae35643bb1cbc78da4e8a9da482bce7.tar.bz2 |
Suppress clang warnings for harfbuzz.
BUG=113708
TEST=none
NOTRY=true
Review URL: http://codereview.chromium.org/9791027
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129307 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'third_party')
-rw-r--r-- | third_party/harfbuzz/harfbuzz.gyp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/third_party/harfbuzz/harfbuzz.gyp b/third_party/harfbuzz/harfbuzz.gyp index 7100d73e..bb7be86 100644 --- a/third_party/harfbuzz/harfbuzz.gyp +++ b/third_party/harfbuzz/harfbuzz.gyp @@ -60,6 +60,18 @@ '../../build/linux/system.gyp:freetype2', ], }], + ['clang == 1', { + 'xcode_settings': { + 'WARNING_CFLAGS': [ + # "harfbuzz is in strict maintenace mode", + # see http://crbug.com/113708 + '-Wno-pointer-sign', + ], + }, + 'cflags': [ + '-Wno-pointer-sign', + ], + }], ], }, ], |