summaryrefslogtreecommitdiff
path: root/chromium/v8/tools/generate-header-include-checks.py
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-13 15:05:36 +0100
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2019-02-14 10:33:47 +0000
commite684a3455bcc29a6e3e66a004e352dea4e1141e7 (patch)
treed55b4003bde34d7d05f558f02cfd82b2a66a7aac /chromium/v8/tools/generate-header-include-checks.py
parent2b94bfe47ccb6c08047959d1c26e392919550e86 (diff)
downloadqtwebengine-chromium-e684a3455bcc29a6e3e66a004e352dea4e1141e7.tar.gz
BASELINE: Update Chromium to 72.0.3626.110 and Ninja to 1.9.0
Change-Id: Ic57220b00ecc929a893c91f5cc552f5d3e99e922 Reviewed-by: Michael BrĂ¼ning <michael.bruning@qt.io>
Diffstat (limited to 'chromium/v8/tools/generate-header-include-checks.py')
-rwxr-xr-xchromium/v8/tools/generate-header-include-checks.py16
1 files changed, 2 insertions, 14 deletions
diff --git a/chromium/v8/tools/generate-header-include-checks.py b/chromium/v8/tools/generate-header-include-checks.py
index 7ff52dd7401..511d03c7ba6 100755
--- a/chromium/v8/tools/generate-header-include-checks.py
+++ b/chromium/v8/tools/generate-header-include-checks.py
@@ -28,26 +28,14 @@ OUT_DIR = os.path.join(V8_DIR, 'check-header-includes')
AUTO_EXCLUDE = [
# flag-definitions.h needs a mode set for being included.
'src/flag-definitions.h',
- # blacklist of headers we need to fix (https://crbug.com/v8/7965).
- 'src/allocation-site-scopes.h',
- 'src/compiler/allocation-builder.h',
- 'src/compiler/js-context-specialization.h',
- 'src/compiler/raw-machine-assembler.h',
- 'src/dateparser-inl.h',
- 'src/ic/ic.h',
- 'src/lookup.h',
- 'src/parsing/parser.h',
- 'src/parsing/preparser.h',
- 'src/regexp/jsregexp.h',
- 'src/snapshot/object-deserializer.h',
- 'src/transitions.h',
]
AUTO_EXCLUDE_PATTERNS = [
'src/base/atomicops_internals_.*',
] + [
# platform-specific headers
'\\b{}\\b'.format(p) for p in
- ('win32', 'ia32', 'x64', 'arm', 'arm64', 'mips', 'mips64', 's390', 'ppc')]
+ ('win', 'win32', 'ia32', 'x64', 'arm', 'arm64', 'mips', 'mips64', 's390',
+ 'ppc')]
args = None
def parse_args():