Skip to content

Commit d6040f9

Browse files
authored
Add goog.reflect and goog.math.long (bazelbuild#642)
1 parent 07c7928 commit d6040f9

3 files changed

Lines changed: 1098 additions & 0 deletions

File tree

closure/library/BUILD

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
# Copyright 2025 The Closure Rules Authors. All rights reserved.
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
load("//closure/compiler:closure_js_library.bzl", "closure_js_library")
16+
17+
package(default_visibility = ["//visibility:public"])
18+
19+
licenses(["notice"])
20+
21+
closure_js_library(
22+
name = "reflect",
23+
# TODO(goktug): replace with reflect.js from compiler when included in the artifact.
24+
srcs = ["reflect.js"],
25+
lenient = True,
26+
)
27+
28+
closure_js_library(
29+
name = "long",
30+
srcs = ["long.js"],
31+
)

0 commit comments

Comments
 (0)