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

Side by Side Diff: native_client_sdk/src/examples/dlopen/example.dsc

Issue 10539082: Add DSC files for the various examples. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 6 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 {
2 'TOOLS': ['glibc'],
3 'TARGETS': [
4 {
5 'NAME' : 'dlopen',
6 'TYPE' : 'main',
7 'SOURCES' : ['dlopen.cc'],
8 'LDFLAGS' : ['-g','-ldl','-lppapi_cpp', '-lppapi']
9 },
10 {
11 'NAME' : 'libeightball',
12 'TYPE' : 'so',
13 'SOURCES' : ['eightball.cc', 'eightball.h'],
14 'CXXFLAGS': ['$(NACL_CXXFLAGS)', '-fPIC'],
15 'LDFLAGS' : ['-g','-ldl','-lppapi_cpp', '-lppapi', '-shared']
16 }
17 ],
18 'DEST': 'examples',
19 'NAME': 'dlopen',
20 }
21
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698