aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
* --incompatible_comprehension_variables_do_not_leak defaults to trueGravatar laurentlb2017-09-08
| | | | | | | | RELNOTES[INC]: --incompatible_comprehension_variables_do_not_leak defaults to "true." Iteration variable becomes inaccessible after a list/dict comprehension. PiperOrigin-RevId: 167876119
* Fix some links to query and user manualGravatar dmarting2017-09-08
| | | | PiperOrigin-RevId: 167859496
* Forbid duplicate keys in dictionary literalsGravatar laurentlb2017-09-07
| | | | | | | RELNOTES: When using the dictionary literal syntax, it is now an error to have duplicated keys (e.g. {'ab': 3, 'ab': 5}). PiperOrigin-RevId: 167750614
* incompatible_disallow_keyword_only_args now defaults to trueGravatar laurentlb2017-09-07
| | | | | | | | RELNOTES[INC]: Keyword-only syntax in a function definition is now forbidden e.g. `def foo(a, *, b)` or `def foo(a, *b, c)` PiperOrigin-RevId: 167741296
* Update Bazel android tutorial to reflect more possible usages of ↵Gravatar dannark2017-09-06
| | | | | | | android_sdk_repository and android_ndk_repository without api_level. RELNOTES: None PiperOrigin-RevId: 167655738
* IDE docs: Add more info and links to supported IDEs and editorsGravatar Steren2017-09-06
| | | | | | | | #3257 Closes #3627. PiperOrigin-RevId: 167571696
* Update documentation and fix typoGravatar fzaiser2017-09-05
| | | | | RELNOTES: PiperOrigin-RevId: 167554617
* Rename bazel-user-manual.html into user-manual.htmlGravatar dmarting2017-09-04
| | | | PiperOrigin-RevId: 167477112
* Fix aspects documentationGravatar dslomov2017-09-01
| | | | | RELNOTES: None PiperOrigin-RevId: 167149910
* Note the existence of a `execroot/` directoryGravatar Alex Vandiver2017-08-31
| | | | | | | | | | To be true to the layout on disk, one should note the literal directory named `execroot` under the outputBase. Also fix the indentation on `<workspace-name>/` due to the HTML escapes. Closes #3520. PiperOrigin-RevId: 167123497
* Move blaze-query-v2.html to query.htmlGravatar dmarting2017-08-31
| | | | PiperOrigin-RevId: 167012083
* When migrating to Bazel, creating multiple build files is an optional step.Gravatar Googler2017-08-30
| | | | PiperOrigin-RevId: 166909655
* drop apt upgrade from shell script installGravatar Russ Cox2017-08-29
| | | | | | | | I assume apt-get upgrade does _not_ upgrade the shell-script install, especially if you used `--user` but also in general. Closes #3596. PiperOrigin-RevId: 166823519
* Update dependency list in the installation instructionsGravatar aehlig2017-08-28
| | | | | | | | | | While it is not a clear decission what is a dependency and which programs are expected to be always there (various systems have differing opinions on this), err on the side of mentioning more. In any case zip was missing (for any system). Fixes #3578. PiperOrigin-RevId: 166489619
* docs,Windows: update installation docsGravatar laszlocsomor2017-08-28
| | | | | | | | | | | | | | | | In this change: - Reword text in windows.md to use active voice instead of passive voice (so it's clear who the actor is). - Update Bash script examples to use cmd.exe syntax. - Remove outdated information, such as Bazel being an msys2 binary. - Restructure list of requirements to be clearer and simpler. RELNOTES: none PiperOrigin-RevId: 166476459
* Add a --build_runfile_manifests flag which controls production ofGravatar Googler2017-08-22
| | | | | | | | foo_test.runfiles_manifest files. These are the largest local outputs in many builds, and unnecessary for remote test execution. RELNOTES: New --build_runfile_manifests flag controls production of runfiles manifests. PiperOrigin-RevId: 166001477
* Correct documentation for --build_runfile_links.Gravatar Googler2017-08-22
| | | | | | | Its effects are not restricted to C++ binaries. RELNOTES: None. PiperOrigin-RevId: 165992270
* Add recommendation to build-style.md about listing dependencies directly.Gravatar Googler2017-08-22
| | | | | RELNOTES: None. PiperOrigin-RevId: 165949361
* Add python as a bazel dependency into our docsGravatar hlopko2017-08-21
| | | | | RELNOTES: Python is now required to build bazel. PiperOrigin-RevId: 165694080
* Update docs since bazel doesn't link agains msys-2.0.dll anymoreGravatar hlopko2017-08-18
| | | | | RELNOTES: None. PiperOrigin-RevId: 165686521
* Update windows doc for the current default msys install locationGravatar hlopko2017-08-18
| | | | | | | | Msys is now installed to c:\msys64 by default. This cl updates our docs to prevent confusion. RELNOTES: None. PiperOrigin-RevId: 165681864
* Link to the Tulsi and IntelliJ plugin pages.Gravatar Googler2017-08-17
| | | | PiperOrigin-RevId: 165493537
* Make `incompatible_disallow_toplevel_if_statement` default to true.Gravatar laurentlb2017-08-17
| | | | | RELNOTES: Top-level `if` statements are now forbidden. PiperOrigin-RevId: 165469101
* Fix typo in C++ tutorial: "target that that builds"Gravatar Alex2017-08-17
| | | | | | Closes #3554. PiperOrigin-RevId: 165426323
* Update BUILD grammarGravatar fzaiser2017-08-16
| | | | | RELNOTES: None PiperOrigin-RevId: 165193696
* Introduce the 'siblings' query function.Gravatar nharmata2017-08-14
| | | | | | RELNOTES[NEW]: There is now a 'siblings' query function. See the query documentation for more details. PiperOrigin-RevId: 165010653
* Fix formatting issue.Gravatar Googler2017-08-11
| | | | PiperOrigin-RevId: 164892826
* Update files attribute on pkg_tar.Gravatar John Cater2017-08-10
| | | | | Change-Id: I37bb40cae9d8a6ca99460df83b33541972926766 PiperOrigin-RevId: 164726294
* Fix backwards compat doc <title>.Gravatar Benjamin Peterson2017-08-10
| | | | | Change-Id: I4dd65ae67a825739035acc1987d52e9eda05fa47 PiperOrigin-RevId: 164712218
* Fix broken link to cc_binaryGravatar Yi Cheng2017-08-09
| | | | | | | | | Invalid url https://docs.bazel.build/versions/master/tutorial/docs/be/c-cpp.html#cc_binary Valid url: https://docs.bazel.build/versions/master/be/c-cpp.html#cc_binary Closes #3511. PiperOrigin-RevId: 164698249
* Split the mobile app tutorial into separate Android and iOS tutorials and ↵Gravatar Googler2017-08-09
| | | | | | | eliminate the backend server tutorial. RELNOTES: None. PiperOrigin-RevId: 164653190
* Add python to bazel's dockerfilesGravatar hlopko2017-08-08
| | | | | | | | | Since https://github.com/bazelbuild/bazel/commit/4c55898e71d30b32090bef31b43e408d942a24f6 bazel requires python to run create_embedded_tools. This cl adds it to the affected Dockerfiles. Not to the debian one, since debian has 'python' binary there by default. While add it, sort the packages logically. RELNOTES: None. PiperOrigin-RevId: 164574914
* site: add documentation about the BEP and BESGravatar Jakob Buchgraber2017-08-07
| | | | | | | Provide an overview of the Build Event Protocol and Build Event Service. Change-Id: If11a060cea7ce0fef80486a473b0f7c1b523f50c PiperOrigin-RevId: 164435311
* Add a TOC to the C++ tutorial.Gravatar Googler2017-08-07
| | | | | RELNOTES: None. PiperOrigin-RevId: 164283165
* Add TOC to Java tutorial.Gravatar Googler2017-08-07
| | | | | RELNOTES: None. PiperOrigin-RevId: 164278379
* Fix documentation: a list was inadvertently nested in the example codeGravatar fzaiser2017-08-04
| | | | | RELNOTES: None. PiperOrigin-RevId: 164130466
* Fix table of contents for the BUILD file style guide.Gravatar Yilei Yang2017-08-02
| | | | | | | | The "BUILD files" section in best-practices has been moved to skylark/build-style. Closes #3470. PiperOrigin-RevId: 163962064
* Java tutorial: update images of dependency graphsGravatar László Csomor2017-07-31
| | | | | | | | | The images reflect the Bazel query outputs rendered as SVG as of: https://github.com/bazelbuild/examples/commit/a49d26c90bb3f5e41a253de8e069a854c74da904 Change-Id: I0c9bc8f434c420245f2e8c6e6b56a0ae4ab99f09 PiperOrigin-RevId: 163476862
* Add an introduction to what external repositories areGravatar kchodorow2017-07-28
| | | | PiperOrigin-RevId: 163348233
* Windows: Bazel now has an iconGravatar Laszlo Csomor2017-07-27
| | | | | Change-Id: I50a093d4ee1352d7e8958148fec5d577b5eaf00d PiperOrigin-RevId: 163316612
* Cross-reference '--aspects' flag documentation.Gravatar Dmitry Lomov2017-07-24
| | | | | Change-Id: I8fac99583087ddddb2c9e27cc3637a054a460c6e PiperOrigin-RevId: 162927601
* Update install-os-x.mdGravatar Oleg Tsarev2017-07-24
| | | | | | | | Incorrect instruction for OSX (apt-get instead of brew) Closes #3437. PiperOrigin-RevId: 162923095
* Rephrase server failure warning in Blaze User ManualGravatar Googler2017-07-24
| | | | PiperOrigin-RevId: 162755817
* Remove reference to missing figures.Gravatar Googler2017-07-24
| | | | | | Fixes #3423 PiperOrigin-RevId: 162754159
* Add links to examples in the documentation.Gravatar laurentlb2017-07-24
| | | | | RELNOTES: None. PiperOrigin-RevId: 162738376
* Tutorial about macro creationGravatar laurentlb2017-07-24
| | | | | RELNOTES: None. PiperOrigin-RevId: 162736242
* Tutorial for sharing a variableGravatar laurentlb2017-07-24
| | | | | | | Intended to be an introduction before talking about macros. RELNOTES: None. PiperOrigin-RevId: 162733299
* Update aspects documentation to the latest and greatest APIs.Gravatar Dmitry Lomov2017-07-21
| | | | | Change-Id: I76d785dbbcd2c5cf30ab5d130e82b2819931651a PiperOrigin-RevId: 162672358
* Automated rollback of commit 08e34e37663ec0fa2e957e44c7e1e0a2afc205ea.Gravatar Googler2017-07-21
| | | | | | | | | | | | | | | | *** Reason for rollback *** Rolling this back as it was the example BUILD file that was incorrect, not the tutorial itself. Submitted an updated BUILD file in commit 6abf4b9. *** Original change description *** the build file and bash example out of synch comparing to the latest code in the java tutorial repo Closes #3419. PiperOrigin-RevId: 162635241
* Reference `aspect` function from aspects documentation.Gravatar Dmitry Lomov2017-07-21
| | | | | Change-Id: Id97d526eaa94f27a0e030438bcfb2bf1527f7503 PiperOrigin-RevId: 162622496