From d6a6f2c7e07438242364a9036f278dab6a01e765 Mon Sep 17 00:00:00 2001 From: Bobby Holley Date: Tue, 10 May 2016 12:37:36 -0700 Subject: Hoist gecko bindings into their own crate. This will be helpful for leveraging the bindings with our nsIAtom-backed string_cache replacement. --- python/tidy/servo_tidy/tidy.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/tidy/servo_tidy/tidy.py') 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(".", "."), ] -- cgit v1.2.3