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

Unified Diff: src/platform/minijail/SConstruct

Issue 523129: minijail: Switch to new cross-friendly packaging style (Closed)
Patch Set: Created 10 years, 11 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 | src/platform/minijail/debian/changelog » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/platform/minijail/SConstruct
diff --git a/src/platform/minijail/SConstruct b/src/platform/minijail/SConstruct
index 464514c6c6e5721027ff97d556ac0972793e53e2..606fbeec5899e016f9ee152ac350d0f0dee17c53 100644
--- a/src/platform/minijail/SConstruct
+++ b/src/platform/minijail/SConstruct
@@ -24,6 +24,10 @@ env.Append(
LIBPATH=['../../third_party/chrome'],
LIBS=['cap', 'base', 'pthread', 'rt'],
)
+for key in Split('CC CXX AR RANLIB LD NM CFLAGS CCFLAGS'):
+ value = os.environ.get(key)
+ if value != None:
+ env[key] = value
env_lib = env.Clone()
env_lib.SharedLibrary('minijail', lib_sources)
« no previous file with comments | « no previous file | src/platform/minijail/debian/changelog » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698