| Index: native_client_sdk/src/examples/dlopen/example.dsc | 
| diff --git a/native_client_sdk/src/examples/dlopen/example.dsc b/native_client_sdk/src/examples/dlopen/example.dsc | 
| index 4983a575448e0517562da441d46bfb1757e0582a..a68c0ffe00fad79c47983a9a7f8ef9bb303ebe2d 100644 | 
| --- a/native_client_sdk/src/examples/dlopen/example.dsc | 
| +++ b/native_client_sdk/src/examples/dlopen/example.dsc | 
| @@ -16,7 +16,9 @@ | 
| }, | 
| { | 
| 'NAME' : 'libreverse', | 
| -      'TYPE' : 'so', | 
| +      # This .so file is manually loaded by dlopen; we don't want to include it | 
| +      # in the .nmf, or it will be automatically loaded on startup. | 
| +      'TYPE' : 'so-standalone', | 
| 'SOURCES' : ['reverse.cc', 'reverse.h'], | 
| 'CXXFLAGS': ['-fPIC'], | 
| 'LIBS' : ['ppapi_cpp', 'ppapi', 'pthread'] | 
| @@ -28,13 +30,6 @@ | 
| 'DEST': 'examples', | 
| 'NAME': 'dlopen', | 
| 'TITLE': 'Dynamic Library Open', | 
| -  'DESC': """ | 
| -The dlopen example demonstrates how build dynamic libraries and then | 
| -open and use them at runtime.  When the page loads, type in a question and | 
| -hit enter or click the ASK! button.  The question and answer will be | 
| -displayed in the page under the text entry box.  Shared libraries are only | 
| -available with the GLIBC toolchain.""", | 
| -  'FOCUS': 'Using shared objects.', | 
| 'GROUP': 'Concepts' | 
| } | 
|  | 
|  |