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

Unified Diff: native_client_sdk/src/build_tools/generate_make.py

Issue 10827363: Add Linux Host builds to NaCl SDK (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 years, 4 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 | « no previous file | native_client_sdk/src/build_tools/make_rules.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client_sdk/src/build_tools/generate_make.py
===================================================================
--- native_client_sdk/src/build_tools/generate_make.py (revision 151748)
+++ native_client_sdk/src/build_tools/generate_make.py (working copy)
@@ -159,6 +159,8 @@
lpaths = target.get('LIBPATHS', [])
ipaths = target.get('INCPATHS', [])
makeobj.SetProject(project, ptype, defs=defs, incs=incs, libs=libs)
+ if ptype == 'main':
+ rules += makeobj.GetPepperPlugin()
for arch in arches:
makeobj.SetArch(arch)
for src in srcs.get('.c', []):
@@ -173,6 +175,7 @@
rules += GenerateCleanRules(tools, configs)
rules += '\nall: $(ALL_TARGETS)\n'
+
return '', rules
« no previous file with comments | « no previous file | native_client_sdk/src/build_tools/make_rules.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698