aboutsummaryrefslogtreecommitdiffhomepage
path: root/site
Commit message (Collapse)AuthorAge
* Add a Troubleshoot section for rulesGravatar laurentlb2017-12-15
| | | | | RELNOTES: None. PiperOrigin-RevId: 179200616
* Document the --incompatible_show_all_print_messages flagGravatar vladmos2017-12-15
| | | | PiperOrigin-RevId: 179190405
* Update links to use the github examplesGravatar laurentlb2017-12-15
| | | | | | | Also remove references to old-style depset. RELNOTES: None. PiperOrigin-RevId: 179184967
* Replace link to cookbook with link to Github examplesGravatar laurentlb2017-12-15
| | | | | RELNOTES: None. PiperOrigin-RevId: 179174976
* Clarify types of `ctx.attr.<attr_name>` objects.Gravatar vladmos2017-12-14
| | | | PiperOrigin-RevId: 179053724
* Replace `ctx.config` with `ctx.configuration` in the documentationGravatar vladmos2017-12-14
| | | | PiperOrigin-RevId: 179048579
* Move profiling information from the Overview to the Optimizing page.Gravatar laurentlb2017-12-14
| | | | | RELNOTES: None. PiperOrigin-RevId: 179037412
* Update Skylark Readability Guidelines.Gravatar dslomov2017-12-14
| | | | | RELNOTES: None. PiperOrigin-RevId: 179034227
* Remove the word 'Skylark' when it doesn't add any value.Gravatar laurentlb2017-12-14
| | | | | | | | | | | The word Skylark tends to be overused. We should use it only when we refer to the language itself. In many places, the word 'Skylark' was used, even if the reader may not know it (e.g. "create a rule" is clearer than "create a Skylark rule"). RELNOTES: None. PiperOrigin-RevId: 179024448
* Fix link.Gravatar GinFungYJF2017-12-14
| | | | | | Closes #4296. PiperOrigin-RevId: 179012791
* Add more links to examples in the documentation.Gravatar laurentlb2017-12-13
| | | | | RELNOTES: None. PiperOrigin-RevId: 178946746
* Fix small typo in user manualGravatar Dave Rolsky2017-12-13
| | | | | | | | s/statup/startup/ Closes #4274. PiperOrigin-RevId: 178880672
* Reorganize menu in "Extending Bazel"Gravatar laurentlb2017-12-12
| | | | | RELNOTES: None. PiperOrigin-RevId: 178765624
* Add a new flag to disable glob tracking: --incompatible_disable_glob_trackingGravatar laurentlb2017-12-12
| | | | | RELNOTES: None. PiperOrigin-RevId: 178760403
* Clarify documentation about outputs.Gravatar laurentlb2017-12-11
| | | | | RELNOTES: None. PiperOrigin-RevId: 178664333
* Add details on the toolchain_typeGravatar katre2017-12-11
| | | | | | Closes #4272. PiperOrigin-RevId: 178638248
* Fix the link to C++ build use cases in the C++ tutorialGravatar Googler2017-12-11
| | | | | RELNOTES: None. PiperOrigin-RevId: 178622747
* Update section heading.Gravatar spomorski2017-12-11
| | | | | RELNOTES: None. PiperOrigin-RevId: 178618216
* Fix the documentation formattingGravatar vladmos2017-12-11
| | | | | | | There's no lexer for `grammar` supported by Jekyll, custom styles such as `{.good}` are also not supported. PiperOrigin-RevId: 178615029
* Fix the documentation formattingGravatar vladmos2017-12-11
| | | | | | | There's no lexer for `grammar` supported by Jekyll, custom styles such as `{.good}` are also not supported. PiperOrigin-RevId: 178607733
* Fixed documentation navigation bar/content layout awkwardness.Gravatar Jingwen2017-12-11
| | | | | | | | | | | | | | Fixes https://github.com/bazelbuild/bazel/issues/4262 A specific browser view width range causes the navigation bar to be stacked on top of the documentation content, therefore requiring a bit of scrolling to get to it. This fix changes col-lg-* to col-md-*, which reduces the view width threshold at which the columns are restyled using `@media queries`. Tested locally on Chrome & Safari. This is also testable by going to the production site and changing the CSS classes in the inspector. Closes #4263. PiperOrigin-RevId: 178605473
* Tweak the grammar of some titles in bazel documentation.Gravatar ahumesky2017-12-08
| | | | | RELNOTES: None. PiperOrigin-RevId: 178406494
* Remove the --incompatible_list_plus_equals_inplace flagGravatar vladmos2017-12-08
| | | | | | | | RELNOTES[INC]: The flag --incompatible_list_plus_equals_inplace is removed, its default behavior is preserved. += on lists now always mutates the left hand side. PiperOrigin-RevId: 178359047
* Restructure left-nav to be more intuitive.Gravatar spomorski2017-12-07
| | | | | RELNOTES: None. PiperOrigin-RevId: 178292524
* New flag `--incompatible_depset_union` to disable old-style depset merging.Gravatar laurentlb2017-12-07
| | | | | | | RELNOTES: Using `+`, `|` or `.union` on depsets is now deprecated. Please use the new constructor instead (see https://docs.bazel.build/versions/master/skylark/depsets.html). PiperOrigin-RevId: 178262338
* Fix link to Skylark reference.Gravatar spomorski2017-12-07
| | | | | | | Addresses GitHub issue #4244 "Skylark API page is not available." RELNOTES: None. PiperOrigin-RevId: 178239595
* Remove toolchain identifier from blaze-out paths in documentation.Gravatar lberki2017-12-07
| | | | | | | We don't put the toolchain identifier in directory names anymore. RELNOTES: None. PiperOrigin-RevId: 178229693
* Replace fictional usernames with "johndoe".Gravatar lberki2017-12-07
| | | | | | | | Sounds a bit more neutral than either the username of an actual person (Ulf, in this case) or the abbreviation for "J. Random Luser". RELNOTES: None. PiperOrigin-RevId: 178224013
* Document Sky Query, along with its unique operators, allrdeps and rbuildfiles.Gravatar janakr2017-12-06
| | | | PiperOrigin-RevId: 178111653
* Flip the --incompatible_disallow_uncalled_set_constructor flagGravatar vladmos2017-12-06
| | | | | | | | RELNOTES: The deprecated builtin `set` is no longer allowed even from within unexecuted code in bzl files. It's temporarily possible to use --incompatible_disallow_uncalled_set_constructor=false if this change causes incompatibility issues. PiperOrigin-RevId: 178087669
* Document the startup option --host_javabase.Gravatar Googler2017-12-04
| | | | | RELNOTES: Document startup option --host_javabase PiperOrigin-RevId: 177849387
* Install instructions: emphasize that the distfile is architecture independentGravatar Klaus Aehlig2017-12-04
| | | | | | | | Explicitly emphasize that the distribution archive is architecture independent. In particular, users do not have to look for their architecture. This has led to confusions. Change-Id: If7c75fcde4ec85d5670eb2c893ffcb4be65e3c0c PiperOrigin-RevId: 177835486
* Move extra action flag docs into the Semantics section.Gravatar Benjamin Peterson2017-12-04
| | | | | | | Previously, they were in the Error checking options section, which doesn't seem correct. Change-Id: I1306da91cff01157963d56db267188bda7d57d4f PiperOrigin-RevId: 177835450
* Fix link to Skyark Linter docs from main docs navigationGravatar Akira Baruah2017-12-04
| | | | | | | | Fixes #4202 Closes #4214. PiperOrigin-RevId: 177829932
* Set default value of incompatible_load_argument_is_label to true.Gravatar laurentlb2017-12-04
| | | | | | | RELNOTES: First argument of 'load' must be a label. Path syntax is removed. (label should start with '//' or ':'). PiperOrigin-RevId: 177802628
* Remove redirects for domains be.bazel.build and cr.bazel.build from the ↵Gravatar Googler2017-12-04
| | | | | | | source for docs.bazel.build (because those subdomains don't resolve here; they resolve to bazel.build, which has the redirects for them) RELNOTES: Remove redirects for domains be.bazel.build and cr.bazel.build from the source for docs.bazel.build (because those subdomains don't resolve here; they resolve to bazel.build, which has the redirects for them) PiperOrigin-RevId: 177787458
* Remove unused adb_jobs flag.Gravatar Googler2017-11-30
| | | | | | | | Flag is mobile-insall v1 only, and has not been used in the last 30 days. This change is a NOP since the default value in //third_party/bazel/tools/android/incremental_install.py is 2. RELNOTES: None PiperOrigin-RevId: 177536782
* Add redirect from skylark/index.html to skylark/concepts.html.Gravatar David Z. Chen2017-11-30
| | | | | | Closes #4140. PiperOrigin-RevId: 177515494
* Fix documentationGravatar vladmos2017-11-30
| | | | | | | Replace code definitions that cannot be recognised by Jekyll with standard definitions. PiperOrigin-RevId: 177453968
* PiperOrigin-RevId: 177447311Gravatar Googler2017-11-30
|
* Improve depset documentation.Gravatar laurentlb2017-11-29
| | | | | RELNOTES: None. PiperOrigin-RevId: 177321286
* Update spec, update octal literal syntax and introduction.Gravatar laurentlb2017-11-29
| | | | | RELNOTES: None. PiperOrigin-RevId: 177311029
* Update bazel-overview.mdGravatar Rasmus Lund2017-11-29
| | | | | | | | Add Java to list of supported programming languages. Closes #4095. PiperOrigin-RevId: 177307650
* Fix broken link for "C++ common use cases"Gravatar Jon Stewart2017-11-29
| | | | | | | | | | Links to cpp use cases outside of tutorial directory. Fixes #4174 (I think?) Closes #4175. PiperOrigin-RevId: 177307565
* Docs: (minor) Change "chaiscript" to "mockascript"Gravatar Tyler True2017-11-29
| | | | | | | | | | | Avoids ambiguity; "chaiscript" is a real language. (See http://chaiscript.com ) Satisfies (unreported issue): https://twitter.com/lefticus/status/932423849928519681 Resolves #4133. Closes #4125. PiperOrigin-RevId: 177281798
* Update blazerc documentation in the blaze/bazel user mannuals.Gravatar ccalvarin2017-11-28
| | | | | | | Update the docs for clarity and to explain the --expand_configs_in_place alternate expansion behavior. RELNOTES: None. PiperOrigin-RevId: 177183524
* Grammar fix. bazel-overview.mdGravatar Roller, David2017-11-28
| | | | | | | | Removed duplicated word in bazel-overview.md docs Closes #4183. PiperOrigin-RevId: 177161035
* Fix typo in tutorial build rulesGravatar Zain Asgar2017-11-28
| | | | | | Closes #4166. PiperOrigin-RevId: 177160857
* Fix doc broken linkGravatar Umesh Yadav2017-11-27
| | | | | | | | It fixes issue #4104 and few on the readme file. Closes #4131. PiperOrigin-RevId: 177053228
* Consistently pluralize arch_flags in toolchain docsGravatar Jacob Parker2017-11-27
| | | | | | Closes #4159. PiperOrigin-RevId: 177033307