diff options
author | scottmg <scottmg@chromium.org> | 2015-01-23 18:06:43 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-01-24 02:07:41 +0000 |
commit | d1caf97fe8db47e5c76043bccbf4dd4a42265831 (patch) | |
tree | 50127663fea4637a596b78e188b159b45c855fc2 /extensions/extensions_browsertests.isolate | |
parent | 876f863615f341236004e0c3cd47125311e4c2d4 (diff) | |
download | chromium_src-d1caf97fe8db47e5c76043bccbf4dd4a42265831.zip chromium_src-d1caf97fe8db47e5c76043bccbf4dd4a42265831.tar.gz chromium_src-d1caf97fe8db47e5c76043bccbf4dd4a42265831.tar.bz2 |
Isolate extensions_browsertests
R=maruel@chromium.org, yoz@chromium.org
TBR=jam@chromium.org
BUG=98637
Review URL: https://codereview.chromium.org/869783004
Cr-Commit-Position: refs/heads/master@{#312993}
Diffstat (limited to 'extensions/extensions_browsertests.isolate')
-rw-r--r-- | extensions/extensions_browsertests.isolate | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/extensions/extensions_browsertests.isolate b/extensions/extensions_browsertests.isolate new file mode 100644 index 0000000..c5da8dc --- /dev/null +++ b/extensions/extensions_browsertests.isolate @@ -0,0 +1,62 @@ +# Copyright 2015 The Chromium Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. +{ + 'conditions': [ + ['OS=="linux" or OS=="mac" or OS=="win"', { + 'variables': { + 'files': [ + '../net/data/', + '../net/tools/testserver/', + '../testing/test_env.py', + '../third_party/pyftpdlib/', + '../third_party/pywebsocket/', + '../third_party/tlslite/', + '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)', + '<(PRODUCT_DIR)/extensions_shell_and_test.pak', + 'test/data/', + ], + }, + }], + ['OS=="linux"', { + 'variables': { + 'command': [ + '../testing/xvfb.py', + '<(PRODUCT_DIR)', + '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)', + '--brave-new-test-launcher', + '--test-launcher-bot-mode', + '--asan=<(asan)', + '--lsan=<(lsan)', + ], + 'files': [ + '../testing/xvfb.py', + '<(PRODUCT_DIR)/libosmesa.so', + ], + }, + }], + ['OS=="linux" and use_ozone==0', { + 'variables': { + 'files': [ + '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', + ], + }, + }], + ['OS=="mac" or OS=="win"', { + 'variables': { + 'command': [ + '../testing/test_env.py', + '<(PRODUCT_DIR)/extensions_browsertests<(EXECUTABLE_SUFFIX)', + '--brave-new-test-launcher', + '--test-launcher-bot-mode', + '--asan=<(asan)', + '--lsan=<(lsan)', + ], + }, + }], + ], + 'includes': [ + '../base/base.isolate', + '../gin/v8.isolate', + ], +} |