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

Unified Diff: native_client_sdk/src/libraries/ppapi_simple/library.dsc

Issue 914983003: [NaCl SDK] Switch ppapi_simple to C library (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update sdk_files.list Created 5 years, 10 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
Index: native_client_sdk/src/libraries/ppapi_simple/library.dsc
diff --git a/native_client_sdk/src/libraries/ppapi_simple/library.dsc b/native_client_sdk/src/libraries/ppapi_simple/library.dsc
index ada1bce184b6a81e0e3401053dbc46b48f26cca0..86fea39fd8e9c557d3c9afd570196f3ec00fc437 100644
--- a/native_client_sdk/src/libraries/ppapi_simple/library.dsc
+++ b/native_client_sdk/src/libraries/ppapi_simple/library.dsc
@@ -3,14 +3,44 @@
'TARGETS': [
{
'NAME' : 'ppapi_simple',
+ 'TYPE' : 'linker-script',
+ 'SOURCES' : [
+ "ppapi_simple_c.a.linkerscript",
+ "ppapi_simple_c.so.linkerscript",
+ ],
+ },
+ {
+ 'NAME' : 'ppapi_simple_cpp',
+ 'TYPE' : 'linker-script',
+ 'SOURCES' : [
+ "ppapi_simple_cpp.a.linkerscript",
+ "ppapi_simple_cpp.so.linkerscript",
+ ],
+ },
+ {
+ 'NAME' : 'ppapi_simple_real',
'TYPE' : 'lib',
'SOURCES' : [
- "ps.cc",
- "ps_context_2d.cc",
- "ps_event.cc",
- "ps_instance.cc",
- "ps_interface.cc",
- "ps_main.cc",
+ "ps.c",
+ "ps_context_2d.c",
+ "ps_event.c",
+ "ps_instance.c",
+ "ps_interface.c",
+ "ps_main.c",
+ ],
+ },
+ {
+ 'NAME' : 'ppapi_simple_c_entry',
+ 'TYPE' : 'static-lib',
+ 'SOURCES' : [
+ "ps_entrypoints_c.c"
+ ],
+ },
+ {
+ 'NAME' : 'ppapi_simple_cpp_entry',
+ 'TYPE' : 'static-lib',
+ 'SOURCES' : [
+ "ps_entrypoints_cpp.cc"
],
}
],

Powered by Google App Engine
This is Rietveld 408576698