blob: 616de1eedeea609bd77bc471e37ea680129962f6 [file] [log] [blame]
commit-bot@chromium.org0b17fea2014-04-17 21:31:32 +00001# ANGLE is the Windows-specific translator from OGL ES 2.0 to D3D 9
robertphillips@google.com021bce92012-04-02 20:42:26 +00002
3{
commit-bot@chromium.org0b17fea2014-04-17 21:31:32 +00004 'conditions': [
5 [ 'skia_angle', {
6 'target_defaults': {
7 'include_dirs': [
8 '$(DXSDK_DIR)/Include',
9 ],
10 'msvs_settings': {
11 'VCLinkerTool': {
12 'conditions': [
13 [ 'skia_arch_width == 32 ', {
14 'AdditionalLibraryDirectories': [
15 '$(DXSDK_DIR)/Lib/x86',
16 ],
17 },{
18 'AdditionalLibraryDirectories': [
19 '$(DXSDK_DIR)/Lib/x64',
20 ],
21 }],
22 ],
23 },
24 },
25 'defines': [
26 'NOMINMAX',
27 ],
28 'defines/': [
29 ['exclude', 'ANGLE_PRELOADED_D3DCOMPILER_MODULE_NAMES'],
30 ],
31 },
32 'variables': {
33 'component': 'static_library',
34 'skia_warnings_as_errors': 0,
35 },
36 'includes': [
37 '../third_party/externals/angle/src/build_angle.gypi',
38 ],
39 }],
40 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000041 'targets': [
42 {
43 'target_name': 'angle',
44 'type': 'none',
robertphillips@google.com021bce92012-04-02 20:42:26 +000045 'conditions': [
46 [ 'skia_angle', {
47 'direct_dependent_settings': {
borenet@google.com623ff0a2012-09-04 16:45:05 +000048 'include_dirs': [
commit-bot@chromium.org0b17fea2014-04-17 21:31:32 +000049 '../third_party/externals/angle/include',
borenet@google.com623ff0a2012-09-04 16:45:05 +000050 ],
robertphillips@google.com021bce92012-04-02 20:42:26 +000051 },
52 }],
borenet@google.com623ff0a2012-09-04 16:45:05 +000053 ],
54 },
robertphillips@google.com021bce92012-04-02 20:42:26 +000055 ],
56}