diff options
Diffstat (limited to 'bin/update_pch')
-rwxr-xr-x | bin/update_pch | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/bin/update_pch b/bin/update_pch index 31fcadae763d..10537d75e676 100755 --- a/bin/update_pch +++ b/bin/update_pch @@ -449,9 +449,20 @@ def filter_ignore(line, module): 'dirent.h', # unix-specific 'pthread.h', 'unistd.h', + 'sys/stat.h', 'ft2build.h', 'fontconfig/fontconfig.h', - 'GL/glx.h' + 'GL/glx.h', + 'src/Transform_inl.h', + 'src/c/sk_c_from_to.h', + 'src/c/sk_types_priv.h', + 'src/core/SkBlitBWMaskTemplate.h', + 'src/sfnt/SkSFNTHeader.h', + 'src/opts/', + 'src/core/SkCubicSolver.h', + 'src/sksl/SkSLCPP.h', + 'src/gpu/vk/GrVkAMDMemoryAllocator.h', + 'src/gpu/GrUtil.h' ] for i in ignore_list: |