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

Unified Diff: build/android/pylib/gtest/setup.py

Issue 124143002: Include icu.isolate instead of listing icudt.dll (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use '0' (quoted) instead of 0 (bare) in setup.py Created 6 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 | « base/base_unittests.isolate ('k') | build/isolate.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/pylib/gtest/setup.py
diff --git a/build/android/pylib/gtest/setup.py b/build/android/pylib/gtest/setup.py
index 0896973cd13072e509d310f1a3542dd18bf78099..1d167235dc19d394530db8a9c31efe40aa4b6831 100644
--- a/build/android/pylib/gtest/setup.py
+++ b/build/android/pylib/gtest/setup.py
@@ -108,6 +108,8 @@ def _GenerateDepsDirUsingIsolate(suite_name):
isolated_abs_path = os.path.join(
constants.GetOutDirectory(), '%s.isolated' % suite_name)
assert os.path.exists(isolate_abs_path)
+ // This needs to be kept in sync with the cmd line options for isolate.py
M-A Ruel 2014/01/15 23:21:20 Python comments are #, not //.
+ // in src/build/isolate.gypi.
isolate_cmd = [
'python', _ISOLATE_SCRIPT,
'remap',
@@ -115,6 +117,7 @@ def _GenerateDepsDirUsingIsolate(suite_name):
'--isolated', isolated_abs_path,
'--path-variable', 'PRODUCT_DIR', constants.GetOutDirectory(),
'--config-variable', 'OS', 'android',
+ '--config-variable', 'icu_use_data_file_flag', '0',
jungshik at Google 2014/01/15 23:13:10 Using 0 (bare) led to a crash (argv has to be a st
M-A Ruel 2014/01/15 23:21:20 Yep, since it is on the command line. Note that us
'--outdir', constants.ISOLATE_DEPS_DIR,
]
assert not cmd_helper.RunCmd(isolate_cmd)
« no previous file with comments | « base/base_unittests.isolate ('k') | build/isolate.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698