Skip to content
This repository was archived by the owner on Jul 31, 2023. It is now read-only.

Commit 4e2206e

Browse files
g-easyIan Sturdy
authored andcommitted
helloworld/hello_world -> helloworld/helloworld (#99)
1 parent 500a70d commit 4e2206e

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

examples/helloworld/BUILD

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
load("//opencensus:copts.bzl", "DEFAULT_COPTS", "TEST_COPTS")
15+
load("//opencensus:copts.bzl", "DEFAULT_COPTS")
1616

1717
licenses(["notice"]) # Apache License 2.0
1818

1919
package(default_visibility = ["//visibility:private"])
2020

2121
cc_binary(
22-
name = "hello_world",
23-
srcs = ["hello_world.cc"],
22+
name = "helloworld",
23+
srcs = ["helloworld.cc"],
2424
copts = DEFAULT_COPTS,
25-
linkopts = ["-pthread"],
25+
linkopts = ["-pthread"], # Required for absl/synchronization bits.
2626
deps = [
2727
"//opencensus/exporters/stats/stdout:stdout_exporter",
2828
"//opencensus/exporters/trace/stdout:stdout_exporter",
29-
"//opencensus/trace",
3029
"//opencensus/stats",
30+
"//opencensus/trace",
3131
"@com_google_absl//absl/strings",
3232
],
3333
)

0 commit comments

Comments
 (0)