ports/www/chromium/files/patch-skia__skia.gyp
Rene Ladan 2cc0ed2a3d Update to 29.0.1547.57
Use devel/ninja instead of gmake as a build tool.

Submitted by:	George Liaskos
Security:	http://vuxml.org/freebsd/ae651a4b-0a42-11e3-ba52-00262d5ed8ee.html
2013-08-23 23:10:05 +00:00

20 lines
826 B
Python

--- skia/skia.gyp.orig 2013-08-18 20:57:26.000000000 +0300
+++ skia/skia.gyp 2013-08-18 21:08:51.000000000 +0300
@@ -284,7 +284,7 @@
},
}],
#Settings for text blitting, chosen to approximate the system browser.
- [ 'OS == "linux"', {
+ [ 'OS == "linux" or os_bsd == 1', {
'defines': [
'SK_GAMMA_EXPONENT=1.2',
'SK_GAMMA_CONTRAST=0.2',
@@ -312,7 +312,7 @@
# For POSIX platforms, prefer the Mutex implementation provided by Skia
# since it does not generate static initializers.
- [ 'OS == "android" or OS == "linux" or OS == "mac" or OS == "ios"', {
+ [ 'OS == "android" or OS == "linux" or OS == "mac" or OS == "ios" or os_bsd == 1', {
'defines+': [
'SK_USE_POSIX_THREADS',
],