aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/native/BUILD
diff options
context:
space:
mode:
authorGravatar Philipp Wollermann <philwo@google.com>2015-08-21 14:38:16 +0000
committerGravatar Han-Wen Nienhuys <hanwen@google.com>2015-08-24 14:01:55 +0000
commita6a5787adb212c6346874d941403132c1c7a7f0c (patch)
treeef4f5a97a6bb137f69b72b792873a6c6da84ee1f /src/main/native/BUILD
parent8977a05681255bc521457cd891373d4cd306a142 (diff)
Fix some missing headers and data dependencies in BUILD files.
-- MOS_MIGRATED_REVID=101218746
Diffstat (limited to 'src/main/native/BUILD')
-rw-r--r--src/main/native/BUILD3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main/native/BUILD b/src/main/native/BUILD
index d9d753929a..f090a6fc84 100644
--- a/src/main/native/BUILD
+++ b/src/main/native/BUILD
@@ -27,8 +27,10 @@ cc_binary(
name = "libunix.so",
srcs = [
"localsocket.cc",
+ "macros.h",
"process.cc",
"unix_jni.cc",
+ "unix_jni.h",
":jni.h",
":jni_md.h",
":jni_os",
@@ -41,6 +43,7 @@ cc_binary(
linkshared = 1,
visibility = ["//src:__subpackages__"],
deps = [
+ "//src/main/cpp/util",
"//src/main/cpp/util:md5",
],
)