Chromium Code Reviews| Index: build/android/pylib/gtest/setup.py |
| diff --git a/build/android/pylib/gtest/setup.py b/build/android/pylib/gtest/setup.py |
| index 6ea06fc3d8ad67db7f9dade5af63e917648c2b53..8c81497923dea3c27e240503da139edf3ae95128 100644 |
| --- a/build/android/pylib/gtest/setup.py |
| +++ b/build/android/pylib/gtest/setup.py |
| @@ -115,10 +115,14 @@ def _GenerateDepsDirUsingIsolate(suite_name): |
| 'remap', |
| '--isolate', isolate_abs_path, |
| '--isolated', isolated_abs_path, |
| + '--outdir', constants.ISOLATE_DEPS_DIR, |
|
M-A Ruel
2014/01/21 17:53:56
Sort the flags, general flags first, then config f
|
| + |
| '--path-variable', 'PRODUCT_DIR', constants.GetOutDirectory(), |
| + |
| '--config-variable', 'OS', 'android', |
| + '--config-variable', 'component', 'static_library', |
| '--config-variable', 'icu_use_data_file_flag', '0', |
| - '--outdir', constants.ISOLATE_DEPS_DIR, |
| + '--config-variable', 'use_openssl', '0', |
|
Ryan Sleevi
2014/01/21 19:43:50
Surely this isn't correct for Android, which is al
M-A Ruel
2014/01/21 20:00:29
While technically false, it's true from an isolate
|
| ] |
| assert not cmd_helper.RunCmd(isolate_cmd) |