mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 05:11:16 +00:00
46f2dcd06b
..and remove support for when.files-changed in the test kind. It is still used for other kinds, and that will be addressed in other bugs. This is re-landing of this bug, now without running test-verify excessively. MozReview-Commit-ID: GBilXAktICZ --HG-- extra : rebase_source : 6cc9a3b5a365d74689946bfa0296f51bc08c2113
20 lines
734 B
Plaintext
20 lines
734 B
Plaintext
component_engine = ('Core', 'JavaScript Engine')
|
|
component_gc = ('Core', 'JavaScript: GC')
|
|
component_jit = ('Core', 'JavaScript Engine: JIT')
|
|
|
|
with Files("**"):
|
|
BUG_COMPONENT = component_engine
|
|
|
|
for header in ('GCAnnotations.h', 'GCAPI.h', 'HeapAPI.h', 'RootingAPI.h', 'SliceBudget.h', 'SweepingAPI.h', 'TraceKind.h', 'TracingAPI.h', 'WeakMapPtr.h', 'GCHashTable.h', 'GCPolicyAPI.h', 'GCVariant.h', 'GCVector.h'):
|
|
with Files('public/' + header):
|
|
BUG_COMPONENT = component_gc
|
|
|
|
with Files('public/TrackedOptimizationInfo.h'):
|
|
BUG_COMPONENT = component_jit
|
|
|
|
with Files("src/**"):
|
|
SCHEDULES.inclusive += ['jittest', 'jsreftest']
|
|
|
|
with Files("public/**"):
|
|
SCHEDULES.inclusive += ['jittest', 'jsreftest']
|