summaryrefslogtreecommitdiffstats
path: root/native_client_sdk/src/examples/tutorial/debugging/example.dsc
blob: 72cd94b61fb51a1e8bcafaf546f7a0ce3555d753 (plain)
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
{
  'DISABLE_PACKAGE': True,  # Doesn't work in packaged apps yet.
  'TOOLS': ['newlib'],
  'SEARCH': [
    '.',
    '../..',
  ],
  'TARGETS': [
    {
      'NAME' : 'debugging',
      'TYPE' : 'main',
      'SOURCES' : [
        'hello_world.c',
      ],
      'CCFLAGS': ['-fno-omit-frame-pointer'],
      'DEPS' : ['error_handling'],
      'LIBS' : ['ppapi', 'pthread']
    }
  ],

  'POST': """
#
# Specify the MAP files to be created.
#
$(eval $(call MAP_RULE,$(TARGET),$(TARGET)))
""",
  'DATA': [
    'example.js',
  ],
  'DEST': 'examples/tutorial',
  'NAME': 'debugging',
  'TITLE': 'Debugging',
  'GROUP': 'Tutorial'
}