1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{
'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux', 'win'],
'TARGETS': [
{
'NAME' : 'input_event',
'TYPE' : 'main',
'SOURCES' : [
'custom_events.cc',
'custom_events.h',
'input_event.cc',
'shared_queue.h',
],
'LIBS': ['ppapi_cpp', 'ppapi', 'pthread']
}
],
'DATA': [
'example.js',
],
'DEST': 'examples/api',
'NAME': 'input_event',
'TITLE': 'Input Event',
'GROUP': 'API',
}
|