blob: 70ab5c2228d6e240e8a067c2aba1cc4f941e6438 [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{
borenet@google.com623ff0a2012-09-04 16:45:05 +00004 'conditions': [
5 [ 'skia_angle', {
6 'target_defaults': {
7 'defines': [
8 'NOMINMAX',
9 ],
10 },
11 'variables': {
12 'component': 'static_library',
13 },
14 'includes': [
15 '../third_party/externals/angle/src/build_angle.gypi',
16 ],
17 }],
18 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000019 'targets': [
20 {
21 'target_name': 'angle',
22 'type': 'none',
robertphillips@google.com021bce92012-04-02 20:42:26 +000023 'conditions': [
24 [ 'skia_angle', {
25 'direct_dependent_settings': {
borenet@google.com623ff0a2012-09-04 16:45:05 +000026 'include_dirs': [
27 '../third_party/externals/angle/include',
28 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000029 },
30 }],
borenet@google.com623ff0a2012-09-04 16:45:05 +000031 ],
32 },
robertphillips@google.com021bce92012-04-02 20:42:26 +000033 ],
34}
35
36# Local Variables:
37# tab-width:2
38# indent-tabs-mode:nil
39# End:
40# vim: set expandtab tabstop=2 shiftwidth=2: