aboutsummaryrefslogtreecommitdiffstats
path: root/.gitignore
Commit message (Collapse)AuthorAgeFilesLines
* Adding vscode and intellij settings folders to gitignoreDavid Raifaizen2016-04-231-0/+9
|
* gitignore: /python/tidy/servo_tidy.egg-info/Peter2016-04-171-0/+1
|
* Stop generating a parser.out file in the source.Ms2ger2016-03-011-1/+0
|
* Revert "Revert "Auto merge of #7103 - frewsxcv:python-venv, r=metajack" for ↵Corey Farwell2015-09-021-1/+1
| | | | | | breaking web-platform-tests." This reverts commit 47d6d958f58f5011742a18abcdd5a76bf4390966.
* Revert "Auto merge of #7103 - frewsxcv:python-venv, r=metajack" for breaking ↵Ms2ger2015-08-091-1/+1
| | | | | | | web-platform-tests. This reverts commit c315404db80c92a695531b0aa4bcf61c125a3bff, reversing changes made to b00583bd4e7169a6b952633df718268904f2bd0c.
* Use one Python virtual environment for all mach commandsCorey Farwell2015-08-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Prior to this commit: * Our Python dependency story was a bit of a mess. We had complete Python packages (wheels and directories) living in-tree, despite not having any changes from upstream. This is particularly bad because `setup.py` never gets run on these packages which could (sometimes silently) unintended breakage. * Python virtual environments (virtualenv) were only utilized for testing web-platform tests After this commit: * A single virtualenv (`python/_virtualenv`) is activated upon *every* call to mach * A requirements file (`python/requirements.txt`) is added to describe the dependencies needed by Python modules in `python/`. The child commit immediately following this will remove all the dependencies no longer needed in-tree (for the sake of keeping this commit readable). Relevant to https://github.com/servo/servo/issues/861 Fixes https://github.com/servo/servo/issues/6999
* Generate code into OUT_DIR.Jack Moffitt2015-06-171-11/+2
| | | | | | | | This is necessary to ensure Cargo knows when to rebuild. Normally .gitignore would be enough to exclude these from Cargo's freshness calculation, but https://github.com/rust-lang/cargo/issues/1729 prevents this currently. This is the new, correct way to do these thigns, just like the style crate does.
* remove the trailing slash for consistence.Tetsuharu OHZEKI2015-03-091-1/+1
|
* Ignore /.cargo/Tetsuharu OHZEKI2015-03-091-1/+1
|
* Upgrade to rustc ba2f13ef0 2015-02-04Simon Sapin2015-02-111-0/+1
|
* Add /.servo .gitignore to ignore the local compiler binary cache.Tetsuharu OHZEKI2015-01-311-0/+1
|
* Update PowerMeasure.py post-cargoifyJack Moffitt2014-12-121-0/+1
|
* auto merge of #4238 : froydnj/servo/remove-cpp-files-from-gitignore, ↵bors-servo2014-12-051-4/+0
|\ | | | | | | | | | | | | | | r=Manishearth These files don't exist in the tree, and the codegen doesn't create them, so we shouldn't have them sitting around in .gitignore. There are h/cpp files sitting around in the bindings codegen directory; I suppose one could make the argument that they're useful for examples, so we should keep them around, too?
| * remove bindings codegen h/cpp files from .gitignoreNathan Froyd2014-12-021-4/+0
| | | | | | | | | | These files don't exist in the tree, and the codegen doesn't create them, so we shouldn't have them sitting around in .gitignore.
* | Warn when Cargo is run directly. Fix #3957.Simon Sapin2014-12-021-0/+2
| |
* | Move the servo crate from root to components/servoSimon Sapin2014-12-021-4/+2
|/
* Add .cargo/config to .gitignore, move content to ports/androidSimon Sapin2014-11-251-0/+1
| | | | | This allows using .cargo/config at the root of the repository for local path override, without risk of accidentally committing it.
* Cargoify servoJack Moffitt2014-09-081-10/+20
|
* Parallelize test runs on Travis (fixes #2980).Manish Goregaokar2014-08-081-1/+1
|
* Upgrade Rust.Jack Moffitt2014-06-051-0/+1
|
* Change how backup/restore make task works.Jack Moffitt2014-04-291-0/+1
| | | | | | | Now we write $SRC/.config.mk.last to store the most recent configure variables for the backup and restore task. Also, they no longer fail if they can't find the variables, and will skip the backup/restore stages and keep going.
* Some minor configure and Makefile cleanup.Jack Moffitt2014-04-291-4/+0
| | | | | | | | Move CFG_TARGET_TRIPLES to CFG_TARGET, since only one target is supported anyway. Create config.{mk,tmp,status} files in build directory instead of the source directory.
* Track MANIFEST.jsonManish Goregaokar2014-04-191-1/+0
|
* Add web-platform-tests submodule and test runnerManish Goregaokar2014-04-181-0/+1
|
* Adding .DS_Store to list of ignored filesBruno de Oliveira Abinader2014-04-041-0/+1
|
* added vim tmp files to git ignoreIsabelle Carter2014-01-221-0/+2
|
* gitignore dirs like build.fooKeegan McAllister2013-10-151-1/+1
|
* DOM bindings: Autogenerate list of prototypes and binding registration goop.Josh Matthews2013-07-121-0/+1
|
* Update ignores for new bindings path.Jack Moffitt2013-06-141-6/+6
|
* Ignore objdir directory.Jack Moffitt2013-05-221-0/+1
| | | | This is the directory that moz buildbots use to build Servo.
* Update ignores.Jack Moffitt2013-05-151-6/+6
|
* Adding config.tmp to the ignore listVivek Galatage2013-04-081-0/+1
| | | | | | | | In case the ../configure script fails or the user cancels it, the temporary file generated is shown as "untracked file" when running "git status".  Adding it to the ignore file. Fixes #341
* Integrate codegen into the build system.Josh Matthews2013-03-131-0/+6
|
* Initial dump of codegen work. Requires manual running of various python ↵Josh Matthews2013-03-131-1/+4
| | | | scripts to build servo.
* Rewrite configure script to be more robust; move autogen.sh logic into ↵Brian J. Burg2012-09-041-1/+2
| | | | configure script.
* Require running autogen.shBrian Anderson2012-05-101-1/+2
|
* Support out of tree buildsBrian Anderson2012-05-051-0/+1
|
* Build an app bundle on OS XBrian Anderson2012-04-231-0/+1
|
* Work on integrating rust-cocoaBrian Anderson2012-04-181-1/+8
|
* Remove servo from .gitignore againBrian Anderson2012-04-161-1/+0
|
* .gitignore servo and servo-test againBrian Anderson2012-04-151-0/+2
|
* Move the main function to servo.rsBrian Anderson2012-04-121-2/+0
|
* Add servo-test to .gitignoreBrian Anderson2012-04-101-1/+2
|
* Add Makefile, servo to .gitignoreBrian Anderson2012-04-101-0/+2
|
* reorganize code, add tests for tree, add 'make test'Niko Matsakis2012-03-271-0/+1