
This is a redo of https://codereview.chromium.org/1245873002 c6649f2e01
with fix for Official build.
Further reduce the boilerplate in .isolate files and is necessary to add debug
symbols, to be done in a follow up.
Slightly accelerate ninja file parsing by blacklisting more extensions.
sbox_validation_tests wasn't run on Windows since
https://codereview.chromium.org/1212003003/ (~2 months ago). Thankfully this CL
uncovered this copy-paste error.
TBR=jam@chromium.org
BUG=98637
CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel
Review URL: https://codereview.chromium.org/1320793004
Cr-Commit-Position: refs/heads/master@{#347912}
34 lines
838 B
Plaintext
34 lines
838 B
Plaintext
# 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=="android" or OS=="linux" or OS=="mac" or OS=="win"', {
|
|
'variables': {
|
|
'files': [
|
|
'test/data/',
|
|
],
|
|
},
|
|
}],
|
|
['OS=="linux" or OS=="mac" or OS=="win"', {
|
|
'variables': {
|
|
'command': [
|
|
'../testing/test_env.py',
|
|
'<(PRODUCT_DIR)/sql_unittests<(EXECUTABLE_SUFFIX)',
|
|
'--brave-new-test-launcher',
|
|
'--test-launcher-bot-mode',
|
|
'--asan=<(asan)',
|
|
'--msan=<(msan)',
|
|
'--tsan=<(tsan)',
|
|
],
|
|
'files': [
|
|
'../testing/test_env.py',
|
|
],
|
|
},
|
|
}],
|
|
],
|
|
'includes': [
|
|
'../base/base.isolate',
|
|
],
|
|
}
|