Chromium Code Reviews| Index: Source/wtf/wtf_unittests.isolate |
| diff --git a/Source/wtf/wtf_unittests.isolate b/Source/wtf/wtf_unittests.isolate |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..31fe20e19247b21c7ef3b8656c93bfdcc96f9812 |
| --- /dev/null |
| +++ b/Source/wtf/wtf_unittests.isolate |
| @@ -0,0 +1,49 @@ |
| +# Copyright (c) 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': [ |
| + ['use_x11==0', { |
|
Dirk Pranke
2015/08/26 00:54:16
same comment
joelo
2015/08/26 01:31:49
Done.
|
| + 'variables': { |
| + 'command': [ |
| + '<(DEPTH)/testing/test_env.py', |
| + '<(PRODUCT_DIR)/wtf_unittests<(EXECUTABLE_SUFFIX)', |
| + '--brave-new-test-launcher', |
| + '--test-launcher-bot-mode', |
| + '--asan=<(asan)', |
| + '--msan=<(msan)', |
| + '--tsan=<(tsan)', |
| + ], |
| + }, |
| + }], |
| + ['use_x11==1', { |
| + 'variables': { |
| + 'command': [ |
| + '<(DEPTH)/testing/xvfb.py', |
| + '<(PRODUCT_DIR)', |
| + '<(PRODUCT_DIR)/wtf_unittests<(EXECUTABLE_SUFFIX)', |
| + '--brave-new-test-launcher', |
| + '--test-launcher-bot-mode', |
| + '--asan=<(asan)', |
| + '--msan=<(msan)', |
| + '--tsan=<(tsan)', |
| + ], |
| + 'files': [ |
| + '<(DEPTH)/testing/xvfb.py', |
| + '<(PRODUCT_DIR)/xdisplaycheck<(EXECUTABLE_SUFFIX)', |
| + ], |
| + }, |
| + }], |
| + ['OS=="linux" or OS=="mac" or OS=="win"', { |
| + 'variables': { |
| + 'files': [ |
| + '<(DEPTH)/testing/test_env.py', |
| + '<(PRODUCT_DIR)/wtf_unittests<(EXECUTABLE_SUFFIX)', |
| + ], |
| + }, |
| + }], |
| + ], |
| + 'includes': [ |
| + '../../../../base/base.isolate', |
| + ], |
| +} |