Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | win32: mach and build command fixes | Vladimir Vukicevic | 2016-01-20 | 1 | -6/+6 | |
| | | | | | | | - Add SERVO_USE_NIGHTLY_RUST env var to use the latest rust/cargo nightly snapshot - Fix up looking for cargo binary (in cargo/bin/cargo, not bin/cargo) - Fix up win32 executable checking (use .exe suffix) - fix up win32 PATH handling (subprocess must use shell=True for PATH change to be honored) | |||||
* | Auto merge of #9150 - mbrubeck:run-android, r=larsbergstrom | bors-servo | 2016-01-05 | 1 | -2/+5 | |
|\ | | | | | | | | | | | | | | | | | | | | | | | Make "mach run" use --android by default when enabled in .servobuild When `.servobuild` has `android = true`, the `mach run` command should default to running on Android. r? @larsbergstrom <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9150) <!-- Reviewable:end --> | |||||
| * | Use build.android config in mach run | Matt Brubeck | 2016-01-04 | 1 | -2/+5 | |
| | | ||||||
* | | mach run --debug: Try using rust-gdb/rust-lldb if available | Olaf Buddenhagen | 2015-12-24 | 1 | -1/+10 | |
|/ | | | | | | | | | | If the selected debugger (requested explicitly or detected by mozdebug) is gdb or lldb, use rust-gdb or rust-lldb instead, if it's available in the path and appears to be working. (This should usually be the case when using the default debugger on GNU/Linux or MacOS, as rust-gdb or rust-lldb is provided by the Rust snapshot in use.) | |||||
* | Update `mach run` to use android_params file | Matt Brubeck | 2015-12-18 | 1 | -11/+15 | |
| | ||||||
* | Add mach install command (Android-only for now) | Matt Brubeck | 2015-12-12 | 1 | -0/+23 | |
| | ||||||
* | Remove unused params from mach package command | Matt Brubeck | 2015-12-12 | 1 | -4/+1 | |
| | ||||||
* | Reduce duplication in binary path determinition for Android target (fixes ↵ | Yanir Seroussi | 2015-11-19 | 1 | -5/+4 | |
| | | | | issue #8349) | |||||
* | Very hackish support for `./mach run --android` | Simon Sapin | 2015-11-13 | 1 | -1/+21 | |
| | ||||||
* | New Android suppport | Lars Bergstrom | 2015-11-04 | 1 | -3/+35 | |
| | ||||||
* | Use the gold linker when available. | Simon Sapin | 2015-08-15 | 1 | -3/+1 | |
| | | | | This shaves 50 seconds off the build time on my machine. | |||||
* | Include private items in `./mach doc` and http://doc.servo.org/ | Simon Sapin | 2015-07-17 | 1 | -1/+3 | |
| | | | | See https://github.com/rust-lang/rust/issues/15347 | |||||
* | Use Cargo's target directory sharing. | Jack Moffitt | 2015-06-15 | 1 | -3/+2 | |
| | | | | | This speeds up `./mach build --dev` followed by `./mach build-cef` by a large amount, and also speeds up other build combos found in our CI. | |||||
* | Handle non-zero return codes in mach run | Matt Brubeck | 2015-06-04 | 1 | -0/+3 | |
| | ||||||
* | Add flake8 to the tidy process for Python files | Corey Farwell | 2015-06-04 | 1 | -7/+5 | |
| | | | | | | | Fixes #6236 Also included in this commit are the changes need to make flake8 pass for the existing python file | |||||
* | Fix tidy issues with Python files in python/ | Corey Farwell | 2015-06-02 | 1 | -0/+9 | |
| | ||||||
* | Auto merge of #6201 - glennw:jquery-runner, r=metajack | bors-servo | 2015-05-31 | 1 | -38/+0 | |
|\ | | | | | | | | | | | <!-- Reviewable:start --> [<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/6201) <!-- Reviewable:end --> | |||||
| * | Add jQuery test runner and mach integration. | Glenn Watson | 2015-06-01 | 1 | -38/+0 | |
| | | ||||||
* | | Remove unused imports in the Python files | Corey Farwell | 2015-05-31 | 1 | -6/+1 | |
|/ | | | | Found using flake8 | |||||
* | Make "mach run -d" an alias for "mach run --dev" | Matt Brubeck | 2015-05-15 | 1 | -2/+2 | |
| | | | | (And the same for `rr-record`.) For consistency with `mach build`. | |||||
* | Add space in mach command suggestion. | Kyle Cesare | 2015-03-31 | 1 | -1/+1 | |
| | ||||||
* | Upgrade rustc to d3c49d2140fc65e8bb7d7cf25bfe74dda6ce5ecf/rustc-1.0.0-dev. | Ms2ger | 2015-03-18 | 1 | -1/+1 | |
| | ||||||
* | Fix post build commands. | Jack Moffitt | 2015-03-06 | 1 | -24/+45 | |
| | | | | `./mach run --release` was completely broken and always ran the dev profile. | |||||
* | mach commands now warn when it's ambiguous which binary to run | Prabhjyot Singh Sodhi | 2015-03-02 | 1 | -2/+17 | |
| | | | | Fixes#5080 | |||||
* | Make 'args' a list in the mach run handler. | Ms2ger | 2015-02-24 | 1 | -1/+1 | |
| | | | This fixes a regression from 894e58f714de0f3d65aeb943dbf8f569feb8c1d6. | |||||
* | add basic |mach rr-{record,replay}| commands | Nathan Froyd | 2015-02-23 | 1 | -4/+42 | |
| | | | | | | | | These are very basic commands for invoking Servo underneath rr. rr currently doesn't support all the syscalls that Servo requires, but that's easy to fix on the rr side. Fixes #4177. | |||||
* | improving mach run error message in case of missing binaries | Prabhjyot Singh Sodhi | 2015-02-13 | 1 | -1/+8 | |
| | ||||||
* | adding --release flag to mach run command | Prabhjyot Singh Sodhi | 2015-02-06 | 1 | -2/+7 | |
| | ||||||
* | Import registrar | Manish Goregaokar | 2015-02-03 | 1 | -0/+2 | |
| | ||||||
* | Fix doc upload | Manish Goregaokar | 2015-02-03 | 1 | -1/+3 | |
| | ||||||
* | Fix 'mach browse-doc' to use the right target directory. | Simon Sapin | 2014-12-03 | 1 | -1/+1 | |
| | ||||||
* | Make 'mach doc' not fail when components/servo/target doesn’t exist. | Simon Sapin | 2014-12-03 | 1 | -2/+3 | |
| | ||||||
* | Replace `mach serve-docs` by `mach browse-doc`, fix #3913 | Simon Sapin | 2014-12-02 | 1 | -13/+6 | |
| | ||||||
* | Have 'mach doc' copy Rust documentation. | Simon Sapin | 2014-12-02 | 1 | -11/+31 | |
| | ||||||
* | Make build system more independent of current directory. | Simon Sapin | 2014-12-02 | 1 | -1/+1 | |
| | ||||||
* | Move the servo crate from root to components/servo | Simon Sapin | 2014-12-02 | 1 | -5/+5 | |
| | ||||||
* | Remove default value for params in mach doc #4134 | Matt Murphy | 2014-11-28 | 1 | -1/+1 | |
| | ||||||
* | Adds --debug and --debugger flags to ./mach run | Matthew Rasmus | 2014-11-23 | 1 | -3/+35 | |
| | ||||||
* | Remove allow_all_args from mach commands | Matthew Rasmus | 2014-11-23 | 1 | -7/+4 | |
| | ||||||
* | Fixes 4037. Enable backtrace on run cmd. | nwin | 2014-11-23 | 1 | -1/+3 | |
| | ||||||
* | Add serve-docs command to mach | Philip Munksgaard | 2014-11-05 | 1 | -0/+30 | |
| | | | | | | | | This enables the user to run `./mach serve-docs` (with an optional port number), starting a local web server that hosts the documentation for Servo and Rust. This closes #3807 | |||||
* | Fix /python/servo code formatting. | Simon Sapin | 2014-09-26 | 1 | -13/+7 | |
| | | | | (My editor screams at me for flake8 lint errors.) | |||||
* | Cargoify servo | Jack Moffitt | 2014-09-08 | 1 | -0/+44 | |