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

Side by Side Diff: build/win/message_compiler.py

Issue 1440693003: Unify mc.exe calling in GN, set environment. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « build/win/message_compiler.gni ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # Runs the Microsoft Message Compiler (mc.exe). This Python adapter is for the
6 # GN build, which can only run Python and not native binaries.
7 #
8 # Usage: message_compiler.py <environment_file> [<args to mc.exe>*]
9
10 import subprocess
11 import sys
12
13 # Read the environment block from the file. This is stored in the format used
14 # by CreateProcess. Drop last 2 NULs, one for list terminator, one for trailing
15 # vs. separator.
16 env_pairs = open(sys.argv[1]).read()[:-2].split('\0')
17 env_dict = dict([item.split('=', 1) for item in env_pairs])
18
19 # mc writes to stderr, so this explicitly redirects to stdout and eats it.
20 try:
21 subprocess.check_output(["mc.exe"] + sys.argv[2:],
22 env=env_dict,
23 stderr=subprocess.STDOUT)
24 except subprocess.CalledProcessError as e:
25 print e.output
26 sys.exit(e.returncode)
OLDNEW
« no previous file with comments | « build/win/message_compiler.gni ('k') | remoting/host/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698