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

Unified Diff: native_client_sdk/src/resources/Makefile.example.template

Issue 412083002: [NaCl SDK] Allow ppapi_simple executables to run in both sel_ldr and in chrome. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 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/resources/Makefile.example.template
diff --git a/native_client_sdk/src/resources/Makefile.example.template b/native_client_sdk/src/resources/Makefile.example.template
index ca1605fd2e39915836f4489ee16326f3dfd33f05..3d6ceb02036addf00b757ebb875a51ebd3995474 100644
--- a/native_client_sdk/src/resources/Makefile.example.template
+++ b/native_client_sdk/src/resources/Makefile.example.template
@@ -47,18 +47,8 @@ CHROME_ARGS += --allow-nacl-socket-api=localhost
[[]]
TARGET = {{targets[0]['NAME']}}
-[[if sel_ldr and targets[0].get('SEL_LDR_LIBS'):]]
-ifdef SEL_LDR
-[[ ExpandDict('DEPS', targets[0].get('SEL_LDR_DEPS', []))]]
-[[ ExpandDict('LIBS', targets[0].get('SEL_LDR_LIBS', []))]]
-else
-[[ ExpandDict('DEPS', targets[0].get('DEPS', []))]]
-[[ ExpandDict('LIBS', targets[0].get('LIBS', []))]]
-endif
-[[else:]]
-[[ ExpandDict('DEPS', targets[0].get('DEPS', []))]]
-[[ ExpandDict('LIBS', targets[0].get('LIBS', []))]]
-[[]]
+[[ExpandDict('DEPS', targets[0].get('DEPS', []))]]
+[[ExpandDict('LIBS', targets[0].get('LIBS', []))]]
[[for target in targets:]]
[[ source_list = (s for s in sorted(target['SOURCES']) if not s.endswith('.h'))]]

Powered by Google App Engine
This is Rietveld 408576698