aboutsummaryrefslogtreecommitdiffstats
path: root/python/tidy/servo_tidy/tidy.py
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-05-11 14:59:04 -0700
committerbors-servo <lbergstrom+bors@mozilla.com>2016-05-11 14:59:04 -0700
commit49fd06089de8357c0d139f6aa623cde55ccd9ef0 (patch)
tree88182136e24c3e3820759e28154d1d37b20fcaee /python/tidy/servo_tidy/tidy.py
parenta85db48623d8f5b5dbddbcc1f1ba0eaa0b531249 (diff)
parentd6a6f2c7e07438242364a9036f278dab6a01e765 (diff)
downloadservo-49fd06089de8357c0d139f6aa623cde55ccd9ef0.tar.gz
servo-49fd06089de8357c0d139f6aa623cde55ccd9ef0.zip
Auto merge of #11121 - bholley:hoist_bindings, r=mbrubeck
Hoist gecko bindings into their own crate This will be helpful for leveraging the bindings with our nsIAtom-backed string_cache replacement. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/11121) <!-- Reviewable:end -->
Diffstat (limited to 'python/tidy/servo_tidy/tidy.py')
-rw-r--r--python/tidy/servo_tidy/tidy.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/tidy/servo_tidy/tidy.py b/python/tidy/servo_tidy/tidy.py
index eb3aa579b66..2a80cc68dfd 100644
--- a/python/tidy/servo_tidy/tidy.py
+++ b/python/tidy/servo_tidy/tidy.py
@@ -34,8 +34,8 @@ file_patterns_to_ignore = [
ignored_files = [
# Generated and upstream code combined with our own. Could use cleanup
os.path.join(".", "ports", "gonk", "src", "native_window_glue.cpp"),
- os.path.join(".", "ports", "geckolib", "bindings.rs"),
- os.path.join(".", "ports", "geckolib", "gecko_style_structs.rs"),
+ os.path.join(".", "ports", "geckolib", "gecko_bindings", "bindings.rs"),
+ os.path.join(".", "ports", "geckolib", "gecko_bindings", "structs.rs"),
os.path.join(".", "resources", "hsts_preload.json"),
os.path.join(".", "tests", "wpt", "metadata", "MANIFEST.json"),
os.path.join(".", "tests", "wpt", "metadata-css", "MANIFEST.json"),
@@ -64,7 +64,7 @@ ignored_dirs = [
os.path.join(".", "target"),
os.path.join(".", "ports", "cef"),
# Tooling, generated locally from external repos.
- os.path.join(".", "ports", "geckolib", "tools"),
+ os.path.join(".", "ports", "geckolib", "gecko_bindings", "tools"),
# Hidden directories
os.path.join(".", "."),
]