Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(267)

Unified Diff: native_client_sdk/src/examples/dlopen/example.dsc

Issue 13488007: [NaCl SDK] Make the SDK examples buildable as a packaged app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix license headers Created 7 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « native_client_sdk/src/examples/dlopen/dlopen.cc ('k') | native_client_sdk/src/examples/dlopen/example.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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'
}
« no previous file with comments | « native_client_sdk/src/examples/dlopen/dlopen.cc ('k') | native_client_sdk/src/examples/dlopen/example.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698