Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit bd54569

Browse files
authored
Merge pull request google#180 from jart/fewer-deps
Use fine-grained closure_js_library deps
2 parents 7baba1d + ce7eace commit bd54569

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

js/closure/BUILD

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,24 +3,22 @@ load("@io_bazel_rules_closure//closure:defs.bzl", "closure_js_library", "closure
33
closure_js_library(
44
name = "openlocationcode_lib",
55
srcs = ["openlocationcode.js"],
6-
deps = [
7-
"@io_bazel_rules_closure//closure/library",
8-
],
96
)
107

118
closure_js_test(
129
name = "openlocationcode_test",
1310
timeout = "short",
1411
srcs = ["openlocationcode_test.js"],
15-
entry_points = ["goog:openlocationcode_test"],
1612
data = [
1713
"//test_data",
1814
],
15+
entry_points = ["goog:openlocationcode_test"],
1916
deps = [
2017
":openlocationcode_lib",
2118
"@io_bazel_rules_closure//closure/library/net:eventtype",
2219
"@io_bazel_rules_closure//closure/library/net:xhrio",
20+
"@io_bazel_rules_closure//closure/library/testing:asserts",
2321
"@io_bazel_rules_closure//closure/library/testing:asynctestcase",
24-
"@io_bazel_rules_closure//closure/library:testing",
22+
"@io_bazel_rules_closure//closure/library/testing:testsuite",
2523
],
2624
)

0 commit comments

Comments
 (0)