OLD | NEW |
1 { | 1 { |
2 'TOOLS': ['newlib'], | 2 'TOOLS': ['newlib', 'glibc', 'pnacl', 'linux'], |
3 'SEARCH': [ | 3 'SEARCH': [ |
4 '.', | 4 '.', |
5 '..', | 5 '..', |
6 '../../tools', | 6 '../../tools', |
7 ], | 7 ], |
8 'TARGETS': [ | 8 'TARGETS': [ |
9 { | 9 { |
10 'NAME' : 'hello_world_stdio', | 10 'NAME' : 'hello_world_stdio', |
11 'TYPE' : 'main', | 11 'TYPE' : 'main', |
12 'SOURCES' : ['hello_world.c'], | 12 'SOURCES' : ['hello_world.c'], |
(...skipping 13 matching lines...) Expand all Loading... |
26 The Hello World Stdio example is the simplest one in the SDK. It uses the | 26 The Hello World Stdio example is the simplest one in the SDK. It uses the |
27 ppapi_main library which creates an Module and Instance, using default values | 27 ppapi_main library which creates an Module and Instance, using default values |
28 to simplify setup and communication with the PPAPI system. In addition, it | 28 to simplify setup and communication with the PPAPI system. In addition, it |
29 uses the nacl_mounts library to remap IO to the Pepper API. This | 29 uses the nacl_mounts library to remap IO to the Pepper API. This |
30 simplifies IO by providing a standard blocking API and allowing STDERR to go to | 30 simplifies IO by providing a standard blocking API and allowing STDERR to go to |
31 the JavaScript console by default.""", | 31 the JavaScript console by default.""", |
32 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', | 32 'FOCUS': 'Basic HTML, JavaScript, Minimal App.', |
33 'GROUP': 'Tools' | 33 'GROUP': 'Tools' |
34 } | 34 } |
35 | 35 |
OLD | NEW |