Hoist gecko bindings into their own crate.

This will be helpful for leveraging the bindings with our nsIAtom-backed
string_cache replacement.
This commit is contained in:
Bobby Holley 2016-05-10 12:37:36 -07:00
parent 7f76e3ba74
commit d6a6f2c7e0
18 changed files with 215 additions and 106 deletions

View file

@ -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(".", "."),
]