summaryrefslogtreecommitdiff
path: root/build_defs.bzl
diff options
context:
space:
mode:
authorJoshua Haberman <jhaberman@gmail.com>2019-03-27 12:52:33 -0700
committerGitHub <noreply@github.com>2019-03-27 12:52:33 -0700
commit928ef7f2c02f18d9945dd750884dffbdebef1b98 (patch)
treed3b71619bfa0b8a91854045c01ce8b5cd15ae403 /build_defs.bzl
parent00f96cb9475228ecacd9be1660f4f8d9d7b24038 (diff)
Removed reflection and other extraneous things from the core library. (#158)
* Removed reflection and other extraneous things from the core library. * Added missing files and ran buildifier. * New CMakeLists.txt. * Made table its own cc_library() for internal usage.
Diffstat (limited to 'build_defs.bzl')
-rw-r--r--build_defs.bzl2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_defs.bzl b/build_defs.bzl
index 59d2af7..05b3974 100644
--- a/build_defs.bzl
+++ b/build_defs.bzl
@@ -329,7 +329,7 @@ def upb_proto_reflection_library(name, deps, upbc):
native.cc_library(
name = name,
srcs = [":" + srcs_rule],
- deps = [":upb"],
+ deps = [":upb", ":reflection"],
copts = ["-Ibazel-out/k8-fastbuild/bin"],
)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback