diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-18 00:09:15 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-09-18 00:09:15 +0000 |
commit | 58680cec807bec4cbca35cfad74439a7653040c4 (patch) | |
tree | 1b22d316f591fce655f7e91dc43462534d9af577 /skia/skia.gyp | |
parent | 784ea1ab3797a0aade739c3d80f9f12b41160aef (diff) | |
download | chromium_src-58680cec807bec4cbca35cfad74439a7653040c4.zip chromium_src-58680cec807bec4cbca35cfad74439a7653040c4.tar.gz chromium_src-58680cec807bec4cbca35cfad74439a7653040c4.tar.bz2 |
Support for building Chrome using Clang.
To build, set the clang=1 gyp_define.
This patch is the culmination of many months of effort and many
patches. It contains the minimal changes to Chrome that
are Clang-specific.
With this, I can build the "chrome" target. Once this patch
is in, we can incrementally fix bits of Chrome and various
tests and remove the Clang-specific workarounds.
Review URL: http://codereview.chromium.org/522020
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@59882 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'skia/skia.gyp')
-rw-r--r-- | skia/skia.gyp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/skia/skia.gyp b/skia/skia.gyp index c627925..20e593d 100644 --- a/skia/skia.gyp +++ b/skia/skia.gyp @@ -592,6 +592,14 @@ '../third_party/skia/src/opts/opts_check_SSE2.cpp' ], }], + ['clang==1', { + 'defines': [ + # Remove all use of __restrict__ -- skia uses it incorrectly, + # and clang is more strict about it. + # http://code.google.com/p/skia/issues/detail?id=63 + 'SK_RESTRICT=', + ], + }], [ 'OS == "linux" or OS == "freebsd" or OS == "openbsd" or OS == "solaris"', { 'dependencies': [ '../build/linux/system.gyp:gdk', |