blob: 2a88d56b60061f335aa8287c39c0d4a7ae13a11e [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',
borenet@google.coma72aef82013-03-22 13:16:06 +000013 'skia_warnings_as_errors': 0,
borenet@google.com623ff0a2012-09-04 16:45:05 +000014 },
15 'includes': [
16 '../third_party/externals/angle/src/build_angle.gypi',
17 ],
18 }],
19 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000020 'targets': [
21 {
22 'target_name': 'angle',
23 'type': 'none',
robertphillips@google.com021bce92012-04-02 20:42:26 +000024 'conditions': [
25 [ 'skia_angle', {
26 'direct_dependent_settings': {
borenet@google.com623ff0a2012-09-04 16:45:05 +000027 'include_dirs': [
28 '../third_party/externals/angle/include',
29 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000030 },
31 }],
borenet@google.com623ff0a2012-09-04 16:45:05 +000032 ],
33 },
robertphillips@google.com021bce92012-04-02 20:42:26 +000034 ],
35}
36
37# Local Variables:
38# tab-width:2
39# indent-tabs-mode:nil
40# End:
41# vim: set expandtab tabstop=2 shiftwidth=2: