diff options
author | Cameron McCormack <cam@mcc.id.au> | 2016-06-01 16:07:06 +1000 |
---|---|---|
committer | Cameron McCormack <cam@mcc.id.au> | 2016-06-03 16:52:09 +1000 |
commit | 1a25467cea7675271ded28306d59ab9cabb35dc5 (patch) | |
tree | 4abea6b79dcb2fa608baf1078b744375ee14f6c7 /python/tidy/servo_tidy/tidy.py | |
parent | 2adc9abe139884cf4da48d6d903b3fa612787e76 (diff) | |
download | servo-1a25467cea7675271ded28306d59ab9cabb35dc5.tar.gz servo-1a25467cea7675271ded28306d59ab9cabb35dc5.zip |
Generate debug and release Gecko bindings.
Diffstat (limited to 'python/tidy/servo_tidy/tidy.py')
-rw-r--r-- | python/tidy/servo_tidy/tidy.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py index 9a824fc1754..5b66d2911e4 100644 --- a/python/tidy/servo_tidy/tidy.py +++ b/python/tidy/servo_tidy/tidy.py @@ -34,7 +34,8 @@ file_patterns_to_ignore = [ ignored_files = [ # Generated and upstream code combined with our own. Could use cleanup os.path.join(".", "ports", "geckolib", "gecko_bindings", "bindings.rs"), - os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs.rs"), + os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs_debug.rs"), + os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs_release.rs"), os.path.join(".", "ports", "geckolib", "string_cache", "atom_macro.rs"), os.path.join(".", "resources", "hsts_preload.json"), os.path.join(".", "tests", "wpt", "metadata", "MANIFEST.json"), |