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
|
{
'TOOLS': ['bionic', 'newlib', 'glibc', 'pnacl', 'linux', 'mac', 'clang-newlib'],
'TARGETS': [
{
'NAME' : 'ppapi_simple',
'TYPE' : 'lib',
'SOURCES' : [
"ps.c",
"ps_context_2d.c",
"ps_event.c",
"ps_instance.c",
"ps_interface.c",
"ps_main.c",
"ps_entrypoints_c.c"
],
},
],
'HEADERS': [
{
'FILES': [
"ps.h",
"ps_context_2d.h",
"ps_event.h",
"ps_instance.h",
"ps_interface.h",
"ps_main.h",
],
'DEST': 'include/ppapi_simple',
},
],
'DEST': 'src',
'NAME': 'ppapi_simple',
}
|