forked from nelsonsilva/openglui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
openglui.gyp
59 lines (56 loc) · 1.37 KB
/
openglui.gyp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
'variables': {
'target_arch%': 'arm',
'dart': './third_party/dart',
},
'conditions': [
['OS=="mac" or OS=="linux"',
{
'targets': [
{
'target_name': 'mobile_emulator',
'type': 'none',
'dependencies': [
'samples/web/web.gyp:assets',
'samples/emulator/emulator.gyp:mobile_emulator_app',
],
},
],
}
],
['OS=="android"', {
'targets': [
{
'target_name': 'samples',
'type': 'none',
'dependencies': [
'samples/web/web.gyp:assets',
'samples/android-webgl-raytrace/android.gyp:android_app',
'samples/android-canvas-tests/android.gyp:android_app',
'samples/android-blasteroids/android.gyp:android_app',
],
},
#{
# 'target_name': 'libdart_shared',
# 'type': 'shared_library',
# 'dependencies': [
# '<(dart)/runtime/dart-runtime.gyp:libdart',
# ],
# 'defines': [
# 'DART_SHARED_LIB',
# ],
# 'link_settings': {
# 'libraries': ['-llog'],
# 'ldflags': [
# '-z',
# 'muldefs',
# ],
# 'ldflags!': [
# '-Wl,--exclude-libs=ALL,-shared',
# ],
# }
#},
],
}]
]
}