aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
...
* Run bazel documentation tests on mac/linux.Gravatar Dmitry Lomov2015-11-19
| | | | | | | Also, fix said documentation. -- MOS_MIGRATED_REVID=108247791
* Open source BazelDocumentationTest (and fix documentation).Gravatar Dmitry Lomov2015-11-19
| | | | | -- MOS_MIGRATED_REVID=108145081
* Recommend that optional parameters have a default of None.Gravatar Chris Povirk2015-11-17
| | | | | -- MOS_MIGRATED_REVID=107957505
* Tutorial: fix WORKSPACE env var exportGravatar Kamal Marhubi2015-11-16
| | | | | | | | | As mentioned in mailing list: https://groups.google.com/forum/#!msg/bazel-discuss/Lmmny9foXW0/_tf2ti8KCAAJ -- Change-Id: I8ec654b3cb8a5df28113d1136c511334c1ea99e9 Reviewed-on: https://bazel-review.googlesource.com/#/c/2340/ MOS_MIGRATED_REVID=107923683
* Optionally allow Bazel to pass JVM options containing spaces directly ↵Gravatar Janak Ramakrishnan2015-11-16
| | | | | | | | | through to the JVM instead of (almost certainly incorrectly) splitting the options along spaces. This allows us to pass non-quote-delimited strings to the JVM, which is necessary for things like -XX:OnOutOfMemoryError="kill -3 %p" (normally bash strips those quotes, but they're not stripped when passed via --host_jvm_args). -- MOS_MIGRATED_REVID=107820087
* RELNOTES: Symlink dirents of directories containing a file named ↵Gravatar Nathan Harmata2015-11-13
| | | | | | | | | | | | | | "DONT_FOLLOW_SYMLINKS_WHEN_TRAVERSING_THIS_DIRECTORY_VIA_A_RECURSIVE_TARGET_PATTERN" will *not* be traversed for transitive target patterns. The motivation here is to allow directories that intentionally contain wonky symlinks (e.g. foo/bar -> foo) to opt out of being consumed by Blaze. For example, given <workspace>/foo bar bad -> . DONT_FOLLOW_SYMLINKS_WHEN_TRAVERSING_THIS_DIRECTORY_VIA_A_RECURSIVE_TARGET_PATTERN the 'bad' symlink will *not* be traversed by the pattern '//foo/...'. -- MOS_MIGRATED_REVID=107738930
* Update links to dashboardGravatar Kristina Chodorow2015-11-11
| | | | | -- MOS_MIGRATED_REVID=107489711
* Mark support for Ubuntu 15.10 instead of 14.10Gravatar Damien Martin-Guillerez2015-11-11
| | | | | | | | Ubuntu 14.10 has reached end-of-life for several months now. -- MOS_MIGRATED_REVID=107473533
* Replaced smart quotes with plain quotes.Gravatar Misha Brukman2015-11-11
| | | | | | | | | Also added missing blank line before code region to fix Dockerfile formatting on the web site. -- Reviewed-on: https://github.com/bazelbuild/bazel/pull/570 MOS_MIGRATED_REVID=107470895
* Add TensorFlow to Bazel users.Gravatar David Chen2015-11-11
| | | | | -- MOS_MIGRATED_REVID=107470234
* Change "contact us" link in Bazel's mobile-install docs, to point at the ↵Gravatar Carmi Grushko2015-11-04
| | | | | | | | | bazel-discuss group, not the contribution instructions. RELNOTES: -- MOS_MIGRATED_REVID=106995833
* Update links in Bazel docs to point to new BE pages.Gravatar David Chen2015-11-02
| | | | | | | Fixes #529 -- MOS_MIGRATED_REVID=106883457
* Changes from [] that were left out of theGravatar Brian Silverman2015-11-02
| | | | | | | | | | | | | | previous commit Document and test how rules can run without the sandbox. The only documentation about usable tags values was in a weird place, along with duplicated information about flaky tests. -- Change-Id: Ib98a0a5c582890512161ecf9f5d89c8e78d9ad68 Reviewed-on: https://bazel-review.googlesource.com/#/c/2220 MOS_MIGRATED_REVID=106858070
* Add Jsonnet to list of Bazel users.Gravatar David Chen2015-10-28
| | | | | -- MOS_MIGRATED_REVID=106487671
* Split Build Encyclopedia into multiple pages.Gravatar David Chen2015-10-23
| | | | | -- MOS_MIGRATED_REVID=106092764
* Fix profiling doc missing in Bazel manualGravatar Klaas Boesche2015-10-21
| | | | | -- MOS_MIGRATED_REVID=105952522
* --Gravatar Googler2015-10-21
| | | | MOS_MIGRATED_REVID=105884504
* Update ios-app tutorial to use ios_application for bundling instead of the ↵Gravatar Chris Parsons2015-10-14
| | | | | | | | | deprecated bundling functionality of objc_binary. This is to be coordinated with updating the example app (linked to within the tutorial) -- MOS_MIGRATED_REVID=105430949
* Fix two bad links to the bazel-discuss Google group.Gravatar Andy Reitz2015-10-09
| | | | | | | -- Change-Id: Ic4935e6c1198957c390718c33431a67ffd66d023 Reviewed-on: https://bazel-review.googlesource.com/#/c/2110/ MOS_MIGRATED_REVID=105052988
* Recommend copts for external include paths, as it's less infectious than ↵Gravatar Kristina Chodorow2015-10-09
| | | | | | | | | | includes=[] includes=[] is inherited by all rules that depend on it, which makes resolving ordering issues more difficult. -- MOS_MIGRATED_REVID=104961784
* Document the --spawn_strategy and --genrule_strategy flag in the user manual.Gravatar Philipp Wollermann2015-10-09
| | | | | -- MOS_MIGRATED_REVID=104958733
* Fix layout issues with site/roadmap.mdGravatar Googler2015-10-05
| | | | | | | | - replaced date delimiters with non-breaking hyphens - fixed some rowspan mis-counts -- MOS_MIGRATED_REVID=104655701
* Bazel user manual: simplify the documentation of Sandboxing.Gravatar Laszlo Csomor2015-10-05
| | | | | -- MOS_MIGRATED_REVID=104644891
* Flag the Android NDK step as optional, fix a typo and tweak the text a bit.Gravatar Googler2015-09-30
| | | | | -- MOS_MIGRATED_REVID=104321044
* Roadmap: delete API items from the intermediate milestonesGravatar Damien Martin-Guillerez2015-09-30
| | | | | | | | This items are not precise enough and they do not make sense if we do that organically by shipping the test coverage. -- MOS_MIGRATED_REVID=104295130
* Update FAQ about supported languageGravatar Damien Martin-Guillerez2015-09-30
| | | | | | | | This part was mostly out of date and it will be hard to maintain the list of languages in many places, removed it. -- MOS_MIGRATED_REVID=104292596
* Remove extraneous comma from iOS app page in tutorialGravatar Googler2015-09-30
| | | | | -- MOS_MIGRATED_REVID=104241690
* Add strip_prefix to the C++ documentationGravatar Kristina Chodorow2015-09-28
| | | | | -- MOS_MIGRATED_REVID=104097995
* Add PetitParser to usersGravatar Kristina Chodorow2015-09-25
| | | | | | | Also moved the corporate users up. -- MOS_MIGRATED_REVID=103940710
* Fix broken links to lib/Globals.html.Gravatar Googler2015-09-25
| | | | | -- MOS_MIGRATED_REVID=103940678
* Mention chroot in --batch description.Gravatar Han-Wen Nienhuys2015-09-25
| | | | | | | Fixes #134. -- MOS_MIGRATED_REVID=103935102
* Fix TZ entry in test-encyclopedia.Gravatar Han-Wen Nienhuys2015-09-25
| | | | | | | Partially addresses issue #422. -- MOS_MIGRATED_REVID=103859649
* Enhance the tutorial by adding information about setting up the Android NDK.Gravatar Lukacs Berki2015-09-22
| | | | | -- MOS_MIGRATED_REVID=103637048
* Improve Skylark documentation (concepts.md), wrt mutability and Python ↵Gravatar Laurent Le Brun2015-09-22
| | | | | | | compatibility -- MOS_MIGRATED_REVID=103634198
* Document mutability of Skylark listsGravatar Francois-Rene Rideau2015-09-22
| | | | | -- MOS_MIGRATED_REVID=103579720
* Update FAQ entry about releases.Gravatar Damien Martin-Guillerez2015-09-21
| | | | | | | Fixes #472. -- MOS_MIGRATED_REVID=103530183
* Requires JDK 8Gravatar Damien Martin-Guillerez2015-09-15
| | | | | | | | | | | | This change deprecate JDK 7 as JavaBuilder follow changes in Java 9 and might use Java 8 features. We will maintain a build with the JDK 7 as long as possible but this build won't include updates in JavaBuilder. RELNOTES[INC]: Bazel requires JDK 8 to run. -- MOS_MIGRATED_REVID=103069207
* Fix typos in "Packages" description and MethodLibrary docGravatar Mark Schaller2015-09-14
| | | | | -- MOS_MIGRATED_REVID=102991839
* Improve documentation for macrosGravatar Laurent Le Brun2015-09-14
| | | | | -- MOS_MIGRATED_REVID=102978812
* Restores most of the documentation for the mobile-install command.Gravatar John Field2015-09-11
| | | | | -- MOS_MIGRATED_REVID=102876538
* --Gravatar Lukacs Berki2015-09-11
| | | | MOS_MIGRATED_REVID=102863841
* Fix minor typos in external.mdGravatar Googler2015-09-11
| | | | | -- MOS_MIGRATED_REVID=102859533
* Blog post for sandboxing.Gravatar Ulf Adams2015-09-11
| | | | | -- MOS_MIGRATED_REVID=102838733
* Update the text about flexibility in the index.htmlGravatar Damien Martin-Guillerez2015-09-11
| | | | | -- MOS_MIGRATED_REVID=102756341
* Added a blog post for the beta releaseGravatar Kristina Chodorow2015-09-09
| | | | | -- MOS_MIGRATED_REVID=102670969
* Simplify Skylark landing page, other minor fixes.Gravatar Laurent Le Brun2015-09-09
| | | | | -- MOS_MIGRATED_REVID=102655878
* Update build-ref.htmlGravatar Laurent Le Brun2015-09-09
| | | | | -- MOS_MIGRATED_REVID=102653140
* Minor improvements in rules.mdGravatar Laurent Le Brun2015-09-09
| | | | | -- MOS_MIGRATED_REVID=102651197
* Move Skylark rules to build-encyclopedia.Gravatar Laurent Le Brun2015-09-09
| | | | | | | | It's probably easier for users if all available rules are listed in the same place. It also makes the left menu cleaner. -- MOS_MIGRATED_REVID=102647614
* Minor tweaks to landing page. Rearrange some links on documentation navigation.Gravatar David Chen2015-09-09
| | | | | -- MOS_MIGRATED_REVID=102638039