blob: c18185648b875ba6e2e38aea3f3b29e03d5d27b9 [file] [log] [blame]
robertphillips@google.com021bce92012-04-02 20:42:26 +00001# ANGLE is the Windows-specific translator from OGL ES 2.0 to D3D 9
2
3{
4 'targets': [
5 {
6 'target_name': 'angle',
7 'type': 'none',
8
9 'conditions': [
10 [ 'skia_angle', {
11 'direct_dependent_settings': {
12 'libraries': [
13 '../../third_party/externals/angle/lib/Debug/libEGL.lib',
14 '../../third_party/externals/angle/lib/Debug/libGLESv2.lib',
15 ],
16 'include_dirs': [
17 '../third_party/externals/angle/include'
18 ],
19 },
20 }],
21 ]
22 }
23 ],
24}
25
26# Local Variables:
27# tab-width:2
28# indent-tabs-mode:nil
29# End:
30# vim: set expandtab tabstop=2 shiftwidth=2: