aboutsummaryrefslogtreecommitdiffhomepage
path: root/gyp/angle.gyp
blob: c18185648b875ba6e2e38aea3f3b29e03d5d27b9 (plain)
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
# ANGLE is the Windows-specific translator from OGL ES 2.0 to D3D 9

{
  'targets': [
    {
      'target_name': 'angle',
      'type': 'none',

      'conditions': [
        [ 'skia_angle', {
          'direct_dependent_settings': {
             'libraries': [
               '../../third_party/externals/angle/lib/Debug/libEGL.lib',
               '../../third_party/externals/angle/lib/Debug/libGLESv2.lib',
             ],
             'include_dirs': [
               '../third_party/externals/angle/include'
             ],
          },
        }],
      ]
    }
  ],
}

# Local Variables:
# tab-width:2
# indent-tabs-mode:nil
# End:
# vim: set expandtab tabstop=2 shiftwidth=2: