Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use env::var_os to read paths from the environment | Matt Brubeck | 2017-10-20 | 1 | -1/+1 |
| | | | | | This avoids unnecessary UTF-8 validation on OsStrings that we just pass back to the OS. | ||||
* | use cargo manifest path to find build.py script | Paul Rouget | 2017-09-05 | 1 | -1/+2 |
| | |||||
* | Remove testing feature from style crate | Manish Goregaokar | 2017-08-07 | 1 | -1/+0 |
| | |||||
* | Auto merge of #16935 - servo:out-of-crate-bindings-tests, r=emilio | bors-servo | 2017-05-19 | 1 | -0/+1 |
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Move bindings tests out of the style crate This cuts in almost half the time to run: ``` touch components/style/lib.rs ./mach test-stylo ``` <!-- 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/16935) <!-- Reviewable:end --> | ||||
| * | Move bindings tests out of the style crate. | Simon Sapin | 2017-05-18 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | This cuts in almost half the time to run: ``` touch components/style/lib.rs ./mach test-stylo ``` | ||||
* | | Move config info from build_gecko.rs to a toml file in gecko. | Xidorn Quan | 2017-05-19 | 1 | -0/+2 |
|/ | |||||
* | Move python path into a lazy static. | Xidorn Quan | 2017-05-08 | 1 | -3/+5 |
| | |||||
* | stylo: Add a build log mechanism. | Emilio Cobos Álvarez | 2017-03-18 | 1 | -0/+2 |
| | | | | | MozReview-Commit-ID: 4Zo1EveUYkK Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io> | ||||
* | Use ascii_case_insensitive_phf_map! in PropertyId::parse | Simon Sapin | 2017-02-26 | 1 | -20/+0 |
| | |||||
* | Bindgenup. | Emilio Cobos Álvarez | 2017-01-25 | 1 | -1/+1 |
| | | | | | MozReview-Commit-ID: 7s0GsWaEjwe Signed-off-by: Emilio Cobos Álvarez <emilio@crisal.io> | ||||
* | Update rustc to 1.16.0-nightly (7821a9b99 2017-01-23). | Ms2ger | 2017-01-24 | 1 | -0/+1 |
| | |||||
* | Do build-time bindgen | Xidorn Quan | 2016-12-10 | 1 | -2/+21 |
| | | | | | | | Majority of build_gecko.rs is just the straightforward conversion from regen.py. There are two differences that: 1. Side in whitelist is changed to mozilla::Side 2. std::atomic__My_base is added to opaque types for Windows | ||||
* | Use rust-phf to map strings to property IDs | Simon Sapin | 2016-12-09 | 1 | -0/+20 |
| | |||||
* | Run style with all properties enabled | Manish Goregaokar | 2016-09-23 | 1 | -0/+1 |
| | |||||
* | Detect python2.7.exe on windows | Xidorn Quan | 2016-07-08 | 1 | -1/+6 |
| | | | | | Latest python2 package on msys2 installs the executable file to python2.7.exe rather than python27.exe. | ||||
* | Explicitly list inputs to the style crate's build script | Matt Brubeck | 2016-05-11 | 1 | -0/+14 |
| | | | | This avoids unncessary build script runs caused by changes to unrelated files. | ||||
* | Extract some Python code from properties.mako.rs into a separate file. | Simon Sapin | 2016-04-20 | 1 | -1/+1 |
| | |||||
* | Move Mako-related files into a new sub-directory. | Simon Sapin | 2016-04-20 | 1 | -1/+5 |
| | | | | There’s gonna be more of them. | ||||
* | Merge list_properties.py into build_properties_rs.py | Simon Sapin | 2016-04-20 | 1 | -21/+6 |
| | |||||
* | Extracted Mako compilation to separate .py files. | Per Lundberg | 2016-04-14 | 1 | -13/+1 |
| | | | | This breaks out some of the parts on #10586, that should be easily mergeable. The idea would be to let you review & merge it first, and then I'll complete the other PR rebase off of this stuff. | ||||
* | Work around a Mako bug on Windows | Simon Sapin | 2016-04-11 | 1 | -2/+2 |
| | | | | | | http://logs.glob.uno/?c=mozilla%23servo#c403766 https://i.imgur.com/j5Zv4LX.png https://bitbucket.org/zzzeek/mako/issues/150/line-ending-handling-broken-on-win32 | ||||
* | Add some machinery to allow us to disable CSS properties (or a subset of ↵ | Bobby Holley | 2016-04-07 | 1 | -1/+4 |
| | | | | values for a property) on a per-product basis. | ||||
* | win32: look for python.exe and variants on win32 in style/build.rs | Vladimir Vukicevic | 2016-01-20 | 1 | -2/+22 |
| | |||||
* | sort all uses | Johann Tuffe | 2015-08-20 | 1 | -1/+1 |
| | |||||
* | Fix CSSStyleDeclaration.setPropertyPriority | Simon Sapin | 2015-07-31 | 1 | -1/+1 |
| | | | | | | Before, it was a complicated no-op. (`parse_style_attribute` expects input like `a: b; c: d;`, when given just a name it return an empty vector.) | ||||
* | Show Mako template errors on the console | Simon Sapin | 2015-07-31 | 1 | -7/+16 |
| | |||||
* | layout: Outline the individual property cascading functions to reduce | Patrick Walton | 2015-07-06 | 1 | -2/+4 |
| | | | | | | | | I-cache footprint. Reduces the size of `properties::cascade` from over 100K of code to under 5K. Due to the improved I-cache utilization, improves ARM scaling on 4 cores by 15%. | ||||
* | Reduce max line length from 150 to 120 characters | Corey Farwell | 2015-05-24 | 1 | -1/+2 |
| | | | | Part of https://github.com/servo/servo/issues/6041 | ||||
* | Upgrade to rustc 551a74dddd84cf01440ee84148ebd18bc68bd7c8. | Simon Sapin | 2015-05-05 | 1 | -2/+0 |
| | |||||
* | Fix build scripts warnings. | Simon Sapin | 2015-03-18 | 1 | -12/+13 |
| | |||||
* | Upgrade rustc to d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/rustc-1.0.0-dev. | Ms2ger | 2015-03-18 | 1 | -2/+2 |
| | |||||
* | Upgrade to rustc ba2f13ef0 2015-02-04 | Simon Sapin | 2015-02-11 | 1 | -6/+8 |
| | |||||
* | style::properties : move generated file out of source tree, use new-style ↵ | Simon Sapin | 2015-01-30 | 1 | -0/+31 |
Cargo build script. |