aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-11-25 10:01:16 -0800
committerGitHub <noreply@github.com>2016-11-25 10:01:16 -0800
commitbf92d0a27ff04ce93a9e301d1782ea04d0a9a208 (patch)
tree7322c1025ab50b9d10dd479f91e2cfb8fc6afb7e
parentd98abaec20e624aa89a3abddf4cf2a6399951ef1 (diff)
parentac9d3e636e8c50440d813d9f188abe1445ce9861 (diff)
downloadservo-bf92d0a27ff04ce93a9e301d1782ea04d0a9a208.tar.gz
servo-bf92d0a27ff04ce93a9e301d1782ea04d0a9a208.zip
Auto merge of #14335 - upsuper:stylo-unit-rerun-build, r=bholley
Add rerun-if-changed for bindings file <!-- Please describe your changes on the following line: --> check_bindings.py uses bindings.rs as input, so it should be rerun if that file gets changed. --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [x] `./mach build -d` does not report any errors - [x] `./mach test-tidy` does not report any errors - [ ] These changes fix #__ (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> check_bindings.py uses bindings.rs as input, so it should be rerun if that file gets changed. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/14335) <!-- Reviewable:end -->
-rw-r--r--tests/unit/stylo/build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/unit/stylo/build.rs b/tests/unit/stylo/build.rs
index 2c75c6857c7..fe161688da3 100644
--- a/tests/unit/stylo/build.rs
+++ b/tests/unit/stylo/build.rs
@@ -8,6 +8,7 @@ fn main() {
println!("cargo:rerun-if-changed=build.rs");
println!("cargo:rerun-if-changed=check_bindings.py");
println!("cargo:rerun-if-changed=../../../ports/geckolib/glue.rs");
+ println!("cargo:rerun-if-changed=../../../components/style/gecko_bindings/bindings.rs");
assert!(Command::new("python").arg("./check_bindings.py")
.spawn().unwrap().wait().unwrap().success());
}