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

Unified Diff: chrome/app/nibs/generate_localizer.py

Issue 2388063003: Add a variable use_system_xcode to GN. (Closed)
Patch Set: Add a missing required argument. Created 4 years, 2 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: chrome/app/nibs/generate_localizer.py
diff --git a/chrome/app/nibs/generate_localizer.py b/chrome/app/nibs/generate_localizer.py
index 3c846e58fb49e241c55360ad82958bc87794fed2..8f51da0afdc2049b15fbe73a8d3e1e0c60f39708 100755
--- a/chrome/app/nibs/generate_localizer.py
+++ b/chrome/app/nibs/generate_localizer.py
@@ -9,6 +9,9 @@
# Extracts all the localizable strings that start with "^IDS" from the given
# xib file, and then generates a localizer to process those strings.
+
+import argparse
+import logging
import os
import plistlib
import subprocess
@@ -38,7 +41,7 @@ static const size_t kUIResourcesSize = arraysize(kUIResources);
#endif // CHROME_APP_NIBS_LOCALIZER_TABLE_H_
'''
-def xib_localizable_strings(xib_path):
+def xib_localizable_strings(xib_path, xcode_path):
"""Runs ibtool to extract the localizable strings data from the xib."""
# Take SDKROOT out of the environment passed to ibtool. ibtool itself has
# no need for it, but when ibtool runs via xcrun and Xcode isn't aware of
@@ -48,9 +51,11 @@ def xib_localizable_strings(xib_path):
del ibtool_env['SDKROOT']
else:
ibtool_env = os.environ
+ if xcode_path:
+ ibtool_env['DEVELOPER_DIR'] = xcode_path
Dirk Pranke 2016/10/04 20:25:40 This logic is a little strange, in that you copy()
erikchen 2016/10/05 19:57:19 Good point, done.
- ibtool_cmd = subprocess.Popen(['xcrun', 'ibtool',
- '--localizable-strings', xib_path],
+ command = ['xcrun', 'ibtool', '--localizable-strings', xib_path]
+ ibtool_cmd = subprocess.Popen(command,
stdout=subprocess.PIPE, stderr=subprocess.PIPE,
env=ibtool_env)
(cmd_out, cmd_err) = ibtool_cmd.communicate()
@@ -104,18 +109,23 @@ def Main(argv=None):
global generate_localizer
generate_localizer = os.path.basename(argv[0])
- # Args
- if len(argv) < 3:
- sys.stderr.write('%s:0: error: Expected output file and then xibs\n' %
- generate_localizer);
- return 1
- output_path = argv[1];
- xib_paths = argv[2:]
+ parser = argparse.ArgumentParser(
+ description='Generates a header file that localizes libs.')
+ parser.add_argument('--output_path', required=True,
+ help='Path to output header file.')
+ parser.add_argument('--developer_dir', required=False,
+ help='Path to Xcode.')
+ parser.add_argument('xibs', nargs='+',
+ help='A list of xibs to localize')
+ args = parser.parse_args()
+
+ output_path = args.output_path
+ xib_paths = args.xibs
full_constants_list = []
for xib_path in xib_paths:
# Run ibtool and convert to something Python can deal with
- plist_string = xib_localizable_strings(xib_path)
+ plist_string = xib_localizable_strings(xib_path, args.developer_dir)
if not plist_string:
return 2
plist = plistlib.readPlistFromString(plist_string)

Powered by Google App Engine
This is Rietveld 408576698