aboutsummaryrefslogtreecommitdiffhomepage
path: root/.gitignore
Commit message (Collapse)AuthorAge
* Use the ijar ZIP implementation in Blaze instead of libarchiveGravatar Damien Martin-Guillerez2015-06-01
| | | | | | | | | | | This ZIP implementation is lightweight and rely on zlib for compression. libarchive was a bit tricky to set-up so it's better to use that one. -- Change-Id: I607b492998572e834e095a4606eeb77c0b574542 Reviewed-on: https://bazel-review.googlesource.com/#/c/1410/ MOS_MIGRATED_REVID=94910072
* Tell git to ignore files generated for/by IntelliJ Idea IDE.Gravatar Thiago Farina2015-05-08
| | | | | | | | | | | bazel.iml is generated by scripts/setup-intellij.sh and .idea is generated by IntelliJ Idea IDE after you open bazel project on it. `git status` stops showing these when ran. -- Change-Id: I2adc4a32ffb20d174b45be2b53deb098b6ef7fd9 MOS_MIGRATED_REVID=93139152
* Improved Eclipse support for the Bazel projectGravatar Damien Martin-Guillerez2015-04-20
| | | | | | | | | | | | | Now the paths are 100% determined using Bazel query. To adapt to another project, change the variables at the top of the setup-eclipse.sh file. It also handles correctly java_plugins now. Because we must do queries on the full workspace, it is not easy to embed in a bazel build. I made a prototype for it but it is really impractical. -- MOS_MIGRATED_REVID=91580472
* Added various generated files to .gitignoreGravatar Damien Martin-Guillerez2015-03-24
| | | | | | | | | | This commit adds the following path to .gitignore: - Bazel symlinks of base_workspace - Eclipse files - Example symlink of base_workspace -- MOS_MIGRATED_REVID=89390747
* Add generated jars to gitignoreGravatar Daniel Wagner-Hall2015-03-23
| | | | | -- MOS_MIGRATED_REVID=89154212
* Add autogenerated directories to .gitignoreGravatar Kristina Chodorow2015-03-20
| | | | | | | See http://stackoverflow.com/questions/25715898/whats-the-difference-between-git-ignoring-directory-and-directory. tools and third_party are symlinks, not directories. -- MOS_MIGRATED_REVID=88938443
* Mention output directories explicitly in Bazel .gitignore.Gravatar Han-Wen Nienhuys2015-03-13
| | | | | -- MOS_MIGRATED_REVID=88435956
* Bazel's .gitignore: replace tools/java/* by tools/jdk/*Gravatar Damien Martin-Guillerez2015-02-20
| | | | | -- MOS_MIGRATED_REVID=86780538
* Add symlinks to third_party/ and tools/ to base_workspaceGravatar Kristina Chodorow2015-02-19
| | | | | | | | | | | | While attempting to clean up the Bazel examples, I noticed that the example tests don't actually work because they expect a third_party directory. We could link third_party/ from the top-level bazel directory, but then we'd have crossing symlinks (base_workspace/tools->tools and third_party->base_workspace/third_party). Linking everything in one direction seemed like a better option, but alternative suggestions are welcome. -- MOS_MIGRATED_REVID=86703332
* Update from Google.Gravatar Han-Wen Nienhuys2015-02-25
-- MOE_MIGRATED_REVID=85702957