| OLD | NEW |
| 1 { | 1 { |
| 2 'TOOLS': ['glibc'], | 2 'TOOLS': ['glibc'], |
| 3 'TARGETS': [ | 3 'TARGETS': [ |
| 4 { | 4 { |
| 5 'NAME': 'dlopen', | 5 'NAME': 'dlopen', |
| 6 'TYPE': 'main', | 6 'TYPE': 'main', |
| 7 'SOURCES': ['dlopen.cc'], | 7 'SOURCES': ['dlopen.cc'], |
| 8 'LIBS': ['dl', 'ppapi_cpp', 'ppapi', 'pthread'] | 8 'LIBS': ['dl', 'ppapi_cpp', 'ppapi', 'pthread'] |
| 9 }, | 9 }, |
| 10 { | 10 { |
| 11 'NAME' : 'libeightball', | 11 'NAME' : 'libeightball', |
| 12 'TYPE' : 'so', | 12 'TYPE' : 'so', |
| 13 'SOURCES' : ['eightball.cc', 'eightball.h'], | 13 'SOURCES' : ['eightball.cc', 'eightball.h'], |
| 14 'CXXFLAGS': ['-fPIC'], | 14 'CXXFLAGS': ['-fPIC'], |
| 15 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] | 15 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] |
| 16 } | 16 } |
| 17 ], | 17 ], |
| 18 'DATA': ['example.js'], | 18 'DATA': [ |
| 19 'Makefile', |
| 20 'example.js', |
| 21 ], |
| 19 'DEST': 'examples', | 22 'DEST': 'examples', |
| 20 'NAME': 'dlopen', | 23 'NAME': 'dlopen', |
| 21 'TITLE': 'Dynamic Library Open', | 24 'TITLE': 'Dynamic Library Open', |
| 22 'DESC': """ | 25 'DESC': """ |
| 23 The dlopen example demonstrates how build dynamic libraries and then | 26 The dlopen example demonstrates how build dynamic libraries and then |
| 24 open and use them at runtime. When the page loads, type in a question and | 27 open and use them at runtime. When the page loads, type in a question and |
| 25 hit enter or click the ASK! button. The question and answer will be | 28 hit enter or click the ASK! button. The question and answer will be |
| 26 displayed in the page under the text entry box. Shared libraries are only | 29 displayed in the page under the text entry box. Shared libraries are only |
| 27 available with the GLIBC toolchain.""", | 30 available with the GLIBC toolchain.""", |
| 28 'FOCUS': 'Using shared objects.', | 31 'FOCUS': 'Using shared objects.', |
| 29 'GROUP': 'Concepts' | 32 'GROUP': 'Concepts' |
| 30 } | 33 } |
| 31 | 34 |
| OLD | NEW |