diff options
author | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 23:08:52 +0000 |
---|---|---|
committer | csharp@chromium.org <csharp@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-17 23:08:52 +0000 |
commit | 37138130c04cc1b07a8602ed71a78111259f686e (patch) | |
tree | 22bdb16118c1329acd13cac2d05745754d5efbd1 /build | |
parent | 805dfc4a87f1bab9c1b516f25564fdfc8abf28bc (diff) | |
download | chromium_src-37138130c04cc1b07a8602ed71a78111259f686e.zip chromium_src-37138130c04cc1b07a8602ed71a78111259f686e.tar.gz chromium_src-37138130c04cc1b07a8602ed71a78111259f686e.tar.bz2 |
Set test_isolation_outdir to '' by default
This will cause isolate to create a unique temporary directory when running isolate.
TBR=maruel@chromium.org
BUG=
Review URL: https://chromiumcodereview.appspot.com/11968049
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@177521 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'build')
-rw-r--r-- | build/common.gypi | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi index bfed69b..0a241b5 100644 --- a/build/common.gypi +++ b/build/common.gypi @@ -404,9 +404,8 @@ # be done while the builders are being reconfigured to check out test data # files. 'test_isolation_mode%': 'noop', - # It must not be '<(PRODUCT_DIR)' alone, the '/' is necessary otherwise - # gyp will remove duplicate flags, causing isolate.py to be confused. - 'test_isolation_outdir%': '<(PRODUCT_DIR)/isolate', + # If no directory is specified then a temporary directory will be used. + 'test_isolation_outdir%': '', 'sas_dll_path%': '<(DEPTH)/third_party/platformsdk_win7/files/redist/x86', 'wix_path%': '<(DEPTH)/third_party/wix', |