aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
...
* Minor language fixesGravatar Florian Weikert2015-09-03
| | | | | -- MOS_MIGRATED_REVID=102273015
* Fix dropdown for Tutoral. Make screenshot on Dashboard blog post responsive.Gravatar David Chen2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102171909
* Add a reference to Braintree in the user listGravatar Damien Martin-Guillerez2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102153773
* Add compilation instructions back to install docGravatar Kristina Chodorow2015-09-02
| | | | | | | Since we don't actually have any binaries available yet... -- MOS_MIGRATED_REVID=102152129
* Fix Roadmap feature list table and Stable Features table on Support page.Gravatar David Chen2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102122126
* Add an example of using a regex with negative lookup in --output_filter.Gravatar Nathan Harmata2015-09-02
| | | | | | | I promised to add this example after responding to a user question in the bazel irc. -- MOS_MIGRATED_REVID=102120516
* Add article about "bazel mobile-install" to bazel.io.Gravatar Lukacs Berki2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102120471
* Rewrite the support policy document.Gravatar Ulf Adams2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102051422
* Bazel tutorial files initial commit.Gravatar Googler2015-09-02
| | | | | -- MOS_MIGRATED_REVID=102049574
* Add Scala to the list of Skylark rules.Gravatar Laurent Le Brun2015-09-02
| | | | | | | Also, remove useless links (they are redundant with the previous list). -- MOS_MIGRATED_REVID=102047434
* Collect Skylark profile info and create HTML statistics when --html_details ↵Gravatar Googler2015-09-02
| | | | | | | given -- MOS_MIGRATED_REVID=102046602
* Change URLs to bazelbuildGravatar Kristina Chodorow2015-09-01
| | | | | -- MOS_MIGRATED_REVID=102022958
* Update the roadmap for the BetaGravatar Damien Martin-Guillerez2015-09-01
| | | | | -- MOS_MIGRATED_REVID=102021487
* Copyedit of Bazel FAQ.Gravatar Googler2015-08-31
| | | | | | | Some rewording of the first section. Otherwise, just style and usage changes. -- MOS_MIGRATED_REVID=101965237
* Update getting started documentationGravatar Kristina Chodorow2015-08-31
| | | | | -- MOS_MIGRATED_REVID=101955117
* Update installation instructions to support binary installer:Gravatar Googler2015-08-31
| | | | | | | | - Updates install.md to include information on downloading and running the installer - Updates getting-started.md to refer users to the installation instructions -- MOS_MIGRATED_REVID=101943813
* Make sidebar use more descriptive namesGravatar Kristina Chodorow2015-08-31
| | | | | | | | | A user (hio) on IRC pointed out that putting "Skylark" and "Skyframe" in the sidebar is intimidating to new users (what is a skylark and why would one care?). -- MOS_MIGRATED_REVID=101931895
* Fixed typos on using error prone with Bazel.Gravatar John Shimek2015-08-31
| | | | | | | | Looks like the option is --javacopt not --javacopts and the link http://errorprone.info/docs 404s. There isn't a top level page for the docs so I altered the link to the first page which is installation. -- Reviewed-on: https://github.com/google/bazel/pull/401 MOS_MIGRATED_REVID=101931516
* Fix small issues in contributing.md.Gravatar Philipp Wollermann2015-08-31
| | | | | -- MOS_MIGRATED_REVID=101919009
* Update windows.md before BetaGravatar Dmitry Lomov2015-08-31
| | | | | -- MOS_MIGRATED_REVID=101917766
* Normalize usage of "workspace", "workspace directory" and "build root" inGravatar Googler2015-08-31
| | | | | | | | | | | | | | | documentation. Replaces instances of "build root" with "workspace directory" as appropriate. Makes the following changes: - /docs/build-ref.html: Adds definition of workspace - /docs/external.md: Replaces "build root" terminology with "workspace" - /docs/getting-started.md: Adds link to workspace definition - /docs/bazel-user-manual.html: Adds link to workspace definition -- MOS_MIGRATED_REVID=101885966
* Also add "bazel version" to the table of contents of the User's Guide. Not ↵Gravatar Lukacs Berki2015-08-26
| | | | | | | my best day today. -- MOS_MIGRATED_REVID=101557371
* Add the "version" and "mobile-install" commands to the User's Guide.Gravatar Lukacs Berki2015-08-26
| | | | | -- MOS_MIGRATED_REVID=101555906
* Fix Skylark library link.Gravatar David Chen2015-08-26
| | | | | -- MOS_MIGRATED_REVID=101519490
* Replace query option --order_results with --order_output, which can take ↵Gravatar Janak Ramakrishnan2015-08-26
| | | | | | | | | | | three values for a given output formatter: 'no', 'deps', or 'full'. A fourth value, 'auto', means either 'deps' or 'full' depending on the formatter. The option 'no' is equivalent to --noorder_results. 'full' means that output will be deterministically ordered, using alphabetization if necessary. 'deps' means that graph order will be preserved (where applicable), but further efforts to order the output may not be undertaken. 'auto' is equivalent to 'full' for all output formatters except for proto, minrank, maxrank, and graph, for which it is equivalent to 'deps'. The purpose of this cl is to enable genquery to force completely deterministic output, which requires that it be able to specify a total ordering on the graph that is consistent across runs. Which ordering doesn't matter very much, so depending on the output formatter, or even within the same one, there may be some groups of nodes that are ordered alphabetically, and some reverse alphabetically. -- MOS_MIGRATED_REVID=101512292
* Fix flag name in Blog post about java configurationGravatar Damien Martin-Guillerez2015-08-26
| | | | | -- MOS_MIGRATED_REVID=101470152
* Document Bazel releasesGravatar Damien Martin-Guillerez2015-08-26
| | | | | -- MOS_MIGRATED_REVID=101465262
* Make sandboxed execution the default in Bazel. This should be safe, as the ↵Gravatar Philipp Wollermann2015-08-26
| | | | | | | strategy is only used if your Linux kernel is new enough and your running system supports it. If this breaks you, please file a bug and you can always go back to non-sandboxed execution by using --spawn_strategy=standalone. -- MOS_MIGRATED_REVID=101464269
* No content change. Fixes line breaks and whitespace issues in HTML only.Gravatar Googler2015-08-26
| | | | | -- MOS_MIGRATED_REVID=101462664
* Add Skylark Supported Rules page to Bazel site.Gravatar Googler2015-08-26
| | | | | | | | Each of the support rule sets now have their own README.md files. This page just links to the directories in the repo where the rules are located and documented. -- MOS_MIGRATED_REVID=101453919
* Added more details about the use of configuration fragments in Skylark to ↵Gravatar Florian Weikert2015-08-24
| | | | | | | the documentation. -- MOS_MIGRATED_REVID=101357875
* Update FAQ for beta release.Gravatar Han-Wen Nienhuys2015-08-20
| | | | | -- MOS_MIGRATED_REVID=101016156
* Split Skylark Library into multiple pages, one per module. Add collapsibleGravatar David Chen2015-08-18
| | | | | | | | submenus to sidebar, and expand and highlight the link for the current page. Collapse sidebar on mobile and expose button for toggling sidebar. -- MOS_MIGRATED_REVID=100836792
* --Gravatar Laurent Le Brun2015-08-14
| | | | MOS_MIGRATED_REVID=100662805
* More specific instructions for Mac OS X installGravatar Dave Dopson2015-08-13
| | | | | | | -- Change-Id: I332634baa1feacbe54c669c12e1933ca9f3f1755 Reviewed-on: https://bazel-review.googlesource.com/#/c/1810 MOS_MIGRATED_REVID=100556377
* Fix link.Gravatar Googler2015-08-12
| | | | | | | Link is pointing out to library (no .html) instead of library.html. -- MOS_MIGRATED_REVID=100366883
* Clarify behavior of --announce_rc.Gravatar Janak Ramakrishnan2015-08-11
| | | | | -- MOS_MIGRATED_REVID=100315352
* Clarify units of argument to --iff_heap_size_greater_than.Gravatar Googler2015-08-11
| | | | | -- MOS_MIGRATED_REVID=100303875
* Fix --batch link in blaze user manual to match other flags.Gravatar Googler2015-08-05
| | | | | | | RELNOTES: nope -- MOS_MIGRATED_REVID=99931043
* Blog post for dashboard dogfoodGravatar Kristina Chodorow2015-08-05
| | | | | -- MOS_MIGRATED_REVID=99867589
* Update concepts page about differences with Python.Gravatar Laurent Le Brun2015-08-04
| | | | | -- MOS_MIGRATED_REVID=99809818
* Add a blog post about docker_buildGravatar Damien Martin-Guillerez2015-07-28
| | | | | | | Also update the Docker section of the FAQ. -- MOS_MIGRATED_REVID=99206773
* Use correct indenting and add trailing commasGravatar Googler2015-07-28
| | | | | | | | | | | | Rules need 4 space indenting: C0330: xx: Wrong hanging indentation (add 2 spaces). Some rule instantiations are missing trailing commas. For others commas are optional, but I think it's better to have them so entries can be added or moved around more easily. -- MOS_MIGRATED_REVID=99192101
* RELNOTES[INC]: Remove built-in support for cc_public_libraryGravatar Han-Wen Nienhuys2015-07-27
| | | | | -- MOS_MIGRATED_REVID=99180853
* Build tree blog postGravatar Kristina Chodorow2015-07-27
| | | | | -- MOS_MIGRATED_REVID=98958752
* Minor documentation fixes. Make sidebar navigation look more consistent.Gravatar David Chen2015-07-27
| | | | | -- MOS_MIGRATED_REVID=98934930
* Updated Skylark documentation in order to mention load()'s new alias featureGravatar Florian Weikert2015-07-27
| | | | | -- MOS_MIGRATED_REVID=98933598
* Rollforward of []: Blaze changes to support LLVM profile feedbackGravatar Googler2015-07-23
| | | | | | | Rollback of commit b961bb931400044ed91e6b0b596f94fe983f9f17. -- MOS_MIGRATED_REVID=98833728
* Make generate_workspace also generate a BUILD file with transitive depsGravatar Kristina Chodorow2015-07-23
| | | | | | | Fixes #89. -- MOS_MIGRATED_REVID=98832811
* Add instructions for getting Gerrit HTTP password to contributing.mdGravatar Kamal Marhubi2015-07-23
| | | | | | | | | This will help contributors who only read one level of docs, like myself! -- Reviewed-on: https://github.com/google/bazel/pull/316 MOS_MIGRATED_REVID=98829887