aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java
diff options
context:
space:
mode:
authorGravatar Alex Humesky <ahumesky@google.com>2015-08-10 22:22:52 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2015-08-11 07:53:46 +0000
commite28689c42f666b19a50fb9e62bafec3691c63d8c (patch)
tree30514b399de5e6165f429ad15532eb44b156f03f /src/main/java
parentc28fc96e6269c09fa817e17a0b72c11e2a4a5532 (diff)
Updates documentation for bind, new_http_archive, and new_git_repository for consistency, accuracy, and clarity.
-- MOS_MIGRATED_REVID=100320358
Diffstat (limited to 'src/main/java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewGitRepositoryRule.java10
-rw-r--r--src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewHttpArchiveRule.java10
-rw-r--r--src/main/java/com/google/devtools/build/lib/rules/workspace/BindRule.java32
3 files changed, 24 insertions, 28 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewGitRepositoryRule.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewGitRepositoryRule.java
index 2a57a9bb24..8db1205c3d 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewGitRepositoryRule.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewGitRepositoryRule.java
@@ -53,12 +53,12 @@ public class NewGitRepositoryRule implements RuleDefinition {
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("tag", STRING))
/* <!-- #BLAZE_RULE(new_git_repository).ATTRIBUTE(build_file) -->
- A file to use as a BUILD file for this directory.
+ The file to use as the BUILD file for this repository.
${SYNOPSIS}
<p>This path is relative to the build's workspace. The file does not need to be named
- BUILD, but can be (something like BUILD.new-repo-name may work well for distinguishing it
- from the repository's actual BUILD files.</p>
+ BUILD, but can be something like BUILD.new-repo-name to distinguish it
+ from the workspace's actual BUILD files.</p>
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("build_file", STRING).mandatory())
/* <!-- #BLAZE_RULE(new_git_repository).ATTRIBUTE(init_submodules) -->
@@ -107,7 +107,7 @@ src/
openssl.h
</pre>
-<p>In the local repository, the user creates a <i>ssl.BUILD</i> file which contains the following
+<p>In the local repository, the user creates a <i>BUILD.ssl</i> file which contains the following
target definition:</p>
<pre class="code">
@@ -126,7 +126,7 @@ new_git_repository(
name = "my-ssl",
remote = "http://example.com/openssl/openssl.git",
tag = "v1.0.2",
- build_file = "ssl.BUILD",
+ build_file = "BUILD.ssl",
)
</pre>
diff --git a/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewHttpArchiveRule.java b/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewHttpArchiveRule.java
index 7a10c17489..768b7c1977 100644
--- a/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewHttpArchiveRule.java
+++ b/src/main/java/com/google/devtools/build/lib/bazel/rules/workspace/NewHttpArchiveRule.java
@@ -46,12 +46,12 @@ public class NewHttpArchiveRule implements RuleDefinition {
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("sha256", STRING).mandatory())
/* <!-- #BLAZE_RULE(new_http_archive).ATTRIBUTE(build_file) -->
- A file to use as a BUILD file for this directory.
+ The file to use as the BUILD file for this repository.
${SYNOPSIS}
<p>This path is relative to the build's workspace. The file does not need to be named
- BUILD, but can be (something like BUILD.new-repo-name may work well for distinguishing it
- from the repository's actual BUILD files.</p>
+ BUILD, but can be something like BUILD.new-repo-name to distinguish it
+ from the workspace's actual BUILD files.</p>
<!-- #END_BLAZE_RULE.ATTRIBUTE --> */
.add(attr("build_file", STRING).mandatory())
/* <!-- #BLAZE_RULE(new_http_archive).ATTRIBUTE(type) -->
@@ -102,7 +102,7 @@ src/
openssl.h
</pre>
-<p>In the local repository, the user creates a <i>ssl.BUILD</i> file which contains the following
+<p>In the local repository, the user creates a <i>BUILD.ssl</i> file which contains the following
target definition:</p>
<pre class="code">
@@ -121,7 +121,7 @@ new_http_archive(
name = "my-ssl",
url = "http://example.com/openssl.zip",
sha256 = "03a58ac630e59778f328af4bcc4acb4f80208ed4",
- build_file = "ssl.BUILD",
+ build_file = "BUILD.ssl",
)
</pre>
diff --git a/src/main/java/com/google/devtools/build/lib/rules/workspace/BindRule.java b/src/main/java/com/google/devtools/build/lib/rules/workspace/BindRule.java
index 1d26ba8ffe..45acf445b0 100644
--- a/src/main/java/com/google/devtools/build/lib/rules/workspace/BindRule.java
+++ b/src/main/java/com/google/devtools/build/lib/rules/workspace/BindRule.java
@@ -72,9 +72,10 @@ ${ATTRIBUTE_DEFINITION}
<h4 id="bind_examples">Examples</h4>
-<p>To give a target an alias, bind it in the <i>WORKSPACE</i> file. For example, suppose there is
- a <code>java_library</code> target called <code>//third_party/javacc-v2</code>. This could be
- aliased by adding the following to the <i>WORKSPACE</i> file:</p>
+<p>To give a target an alias, <code>bind</code> it in the <i>WORKSPACE</i> file. For example,
+ suppose there is a <code>java_library</code> target called
+ <code>//third_party/javacc-v2</code>. This can be aliased by adding the following to the
+ <i>WORKSPACE</i> file:</p>
<pre class="code">
bind(
@@ -84,14 +85,14 @@ bind(
</pre>
<p>Now targets can depend on <code>//external:javacc-latest</code> instead of
- <code>//third_party/javacc-v2</code>. If javacc-v3 is released, the binding can be updated and
- all of the BUILD files depending on <code>//external:javacc-latest</code> will now depend on
- javacc-v3 without needing to be edited.</p>
+ <code>//third_party/javacc-v2</code>. If javacc-v3 is released, the <code>bind</code> rule can be
+ updated and all of the BUILD files depending on <code>//external:javacc-latest</code> will now
+ depend on javacc-v3 without needing to be edited.</p>
-<p>Bind can also be used to refer to external repositories' targets. For example, if there is a
- remote repository named <code>@my-ssl</code> imported in the WORKSPACE file. If the
- <code>@my-ssl</code> repository has a cc_library target <code>//src:openssl-lib</code>, you
- could make this target accessible for your program to depend on by using <code>bind</code>:</p>
+<p>Bind can also be used to make targets in external repositories available to your workspace.
+ For example, if there is a remote repository named <code>@my-ssl</code> imported in the
+ <i>WORKSPACE</i> file and it has a cc_library target <code>//src:openssl-lib</code>, you can
+ create an alias for this target using <code>bind</code>:</p>
<pre class="code">
bind(
@@ -100,12 +101,7 @@ bind(
)
</pre>
-<p>BUILD files cannot use labels that include a repository name
- ("@repository-name//package-name:target-name"), so the only way to depend on a target from
- another repository is to <code>bind</code> it in the WORKSPACE file and then refer to it by its
- aliased name in <code>//external</code> from a BUILD file.</p>
-
-<p>For example, in a BUILD file, the bound target could be used as follows:</p>
+<p>Then, in a BUILD file in your workspace, the bound target can be used as follows:</p>
<pre class="code">
cc_library(
@@ -117,7 +113,7 @@ cc_library(
</pre>
<p>Within <code>sign_in.cc</code> and <code>sign_in.h</code>, the header files exposed by
- <code>//external:openssl</code> can be referred to by their path relative to their repository
+ <code>//external:openssl</code> can be referred to using their path relative to their repository
root. For example, if the rule definition for <code>@my-ssl//src:openssl-lib</code> looks like
this:</p>
@@ -129,7 +125,7 @@ cc_library(
)
</pre>
-<p>Then <code>sign_in.cc</code>'s first lines might look like this:</p>
+<p>Then <code>sign_in.cc</code>'s includes might look like this:</p>
<pre class="code">
#include "sign_in.h"