summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/examples/hello_world/example.dsc
blob: fbc1a01961058c3bf53de223d6be958c8dfe6401 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  'TOOLS': ['newlib', 'glibc'],
  'TARGETS': [
    {
      'NAME' : 'hello_world',
      'TYPE' : 'main',
      'SOURCES' : ['hello_world.c'],
    }
  ],
  'DEST': 'examples',
  'NAME': 'hello_world',
  'TITLE': 'Hello World.',
  'DESC': """
The Hello World In C example demonstrates the basic structure of all
Native Client applications. This example loads a Native Client module.  The
page tracks the status of the module as it load.  On a successful load, the
module will post a message containing the string "Hello World" back to
JavaScript which will display it as an alert.""",
  'INFO': 'Basic HTML, JavaScript, and module architecture.'
}