Commit 685c4b59 authored by joelo@chromium.org's avatar joelo@chromium.org

Add isolate/swarming support for webkit_unit_tests.

BUG=524758
TBR=dpranke@chromium.org

Review URL: https://codereview.chromium.org/1320253003

git-svn-id: svn://svn.chromium.org/blink/trunk@201586 bbb929c8-8fbe-4397-9dbb-9b2b20218538
parent cd040841
......@@ -174,5 +174,22 @@
'includes': [ '../../../../build/apk_test.gypi' ],
}],
}],
['test_isolation_mode != "noop"', {
'targets': [
{
'target_name': 'webkit_unit_tests_run',
'type': 'none',
'dependencies': [
'webkit_unit_tests',
],
'includes': [
'../../../../build/isolate.gypi',
],
'sources': [
'webkit_unit_tests.isolate',
],
},
],
}],
],
}
# 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.
{
'variables': {
'files': [
'<(PRODUCT_DIR)/content_shell.pak',
'tests/data/',
# Required by some image decoder tests.
'../platform/image-decoders/testing/',
'../../LayoutTests/fast/images/resources/',
# Required by some font tests.
'../platform/testing/data/',
],
},
'conditions': [
['OS=="linux" or OS=="mac" or OS=="win"', {
'variables': {
'command': [
'<(DEPTH)/testing/test_env.py',
'<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)',
'--brave-new-test-launcher',
'--test-launcher-bot-mode',
'--asan=<(asan)',
'--msan=<(msan)',
'--tsan=<(tsan)',
],
'files': [
'<(DEPTH)/testing/test_env.py',
'<(PRODUCT_DIR)/webkit_unit_tests<(EXECUTABLE_SUFFIX)',
],
},
}],
],
'includes': [
'../../../../base/base.isolate',
'../../../../gin/v8.isolate',
# Required on Android to copy icudtl.dat to a device.
"../../../../third_party/icu/icu.isolate",
],
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment