forked from Automattic/node-canvas
-
Notifications
You must be signed in to change notification settings - Fork 1
/
static.gyp
34 lines (34 loc) · 936 Bytes
/
static.gyp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
'includes': ['static/locations.gyp'],
'variables':
{
'ensure_deps%': '<!(static/ensure_deps.sh)',
},
'targets':
[{
'includes': ['canvas.gypi'],
'include_dirs':
[
'deps',
'deps/<(cairo_root)',
'deps/<(cairo_root)cairo',
'static/custom-include/cairo',
'deps/<(freetype_root)/include',
'deps/<(gif_root)/lib',
'deps/<(jpeg_root)',
'static/custom-include/jpeg',
'deps/<(libpng_root)',
'deps/<(pixman_root)pixman',
'deps/<(zlib_root)'
],
'dependencies':
[
'static/cairo.gyp:cairo',
'static/libpng.gyp:png',
'static/jpeg.gyp:libjpeg',
'static/gif.gyp:gif',
],
'sources': ['src/FontFace.cc'],
'defines': ['HAVE_FREETYPE', 'HAVE_JPEG' ,'HAVE_GIF'],
}]
}