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

Unified Diff: preparser/SConscript

Issue 7309014: Correctly propagate toolchain setting in SConstruct. (Closed)
Patch Set: Created 9 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
« no previous file with comments | « SConstruct ('k') | samples/SConscript » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: preparser/SConscript
diff --git a/preparser/SConscript b/preparser/SConscript
index 1d51e826cc8dbb4317cb786b1378ced4b3421452..10b3953193624983b782e290da5bd7f0fe7db654 100644
--- a/preparser/SConscript
+++ b/preparser/SConscript
@@ -26,10 +26,10 @@
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
from os.path import join
-Import('context')
+Import('context tools')
def ConfigureObjectFiles():
- env = Environment()
+ env = Environment(tools=tools)
env.Replace(**context.flags['preparser'])
context.ApplyEnvOverrides(env)
return env.Object('preparser-process.cc')
« no previous file with comments | « SConstruct ('k') | samples/SConscript » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698