[swarming] Isolate static initializer check.
BUG=chromium:535160 LOG=n Review URL: https://codereview.chromium.org/1568293002 Cr-Commit-Position: refs/heads/master@{#33176}
This commit is contained in:
parent
cad2294e42
commit
835813c38c
@ -34,6 +34,7 @@
|
|||||||
'../test/simdjs/simdjs.gyp:*',
|
'../test/simdjs/simdjs.gyp:*',
|
||||||
'../test/test262/test262.gyp:*',
|
'../test/test262/test262.gyp:*',
|
||||||
'../test/webkit/webkit.gyp:*',
|
'../test/webkit/webkit.gyp:*',
|
||||||
|
'../tools/check-static-initializers.gyp:*',
|
||||||
],
|
],
|
||||||
}],
|
}],
|
||||||
]
|
]
|
||||||
|
26
tools/check-static-initializers.gyp
Normal file
26
tools/check-static-initializers.gyp
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
# Copyright 2015 the V8 project 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': [
|
||||||
|
['test_isolation_mode != "noop"', {
|
||||||
|
'targets': [
|
||||||
|
{
|
||||||
|
'target_name': 'check_static_initializers_run',
|
||||||
|
'type': 'none',
|
||||||
|
'dependencies': [
|
||||||
|
'../src/d8.gyp:d8_run',
|
||||||
|
],
|
||||||
|
'includes': [
|
||||||
|
'../build/features.gypi',
|
||||||
|
'../build/isolate.gypi',
|
||||||
|
],
|
||||||
|
'sources': [
|
||||||
|
'check-static-initializers.isolate',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
}],
|
||||||
|
],
|
||||||
|
}
|
16
tools/check-static-initializers.isolate
Normal file
16
tools/check-static-initializers.isolate
Normal file
@ -0,0 +1,16 @@
|
|||||||
|
# Copyright 2016 the V8 project 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': {
|
||||||
|
'command': [
|
||||||
|
'check-static-initializers.sh',
|
||||||
|
],
|
||||||
|
'files': [
|
||||||
|
'check-static-initializers.sh',
|
||||||
|
],
|
||||||
|
},
|
||||||
|
'includes': [
|
||||||
|
'../src/d8.isolate',
|
||||||
|
],
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user