aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/cpp/BUILD
diff options
context:
space:
mode:
authorGravatar Ulf Adams <ulfjack@google.com>2015-07-23 09:54:33 +0000
committerGravatar Laszlo Csomor <laszlocsomor@google.com>2015-07-23 11:01:00 +0000
commit3fe87d7b03522c357efa804fffc41c35aa175ebd (patch)
treeed0012bbc4ee09d00583cec18a9abd66277f8235 /src/main/cpp/BUILD
parentefa388529ee48bdd80ccf46c2b372a00f1608f18 (diff)
Add a BUILD file to src/main/cpp/util.
-- MOS_MIGRATED_REVID=98918607
Diffstat (limited to 'src/main/cpp/BUILD')
-rw-r--r--src/main/cpp/BUILD39
1 files changed, 5 insertions, 34 deletions
diff --git a/src/main/cpp/BUILD b/src/main/cpp/BUILD
index f2f4579679..c1f472b4fd 100644
--- a/src/main/cpp/BUILD
+++ b/src/main/cpp/BUILD
@@ -1,33 +1,5 @@
-cc_library(
- name = "util",
- srcs = [
- "util/errors.cc",
- "util/file.cc",
- "util/numbers.cc",
- "util/port.cc",
- "util/strings.cc",
- ],
- hdrs = [
- "util/errors.h",
- "util/exit_code.h",
- "util/file.h",
- "util/numbers.h",
- "util/port.h",
- "util/strings.h",
- ],
- copts = [
- "-DBLAZE_OPENSOURCE=1",
- ],
- includes = ["."],
-)
-
-cc_library(
- name = "md5",
- srcs = ["util/md5.cc"],
- hdrs = ["util/md5.h"],
- includes = ["."],
- visibility = ["//visibility:public"],
-)
+# Description:
+# The Bazel launcher.
filegroup(
name = "blaze_util_os",
@@ -50,9 +22,7 @@ cc_binary(
copts = [
"-Wno-sign-compare",
"-DBLAZE_JAVA_CPU=\\\"k8\\\"",
- "-DBLAZE_OPENSOURCE=1",
],
- includes = ["."],
linkopts = select({
"//src:darwin": [
],
@@ -62,8 +32,9 @@ cc_binary(
}),
visibility = ["//src:__pkg__"],
deps = [
- ":md5",
- ":util",
+ "//src/main/cpp/util",
+ "//src/main/cpp/util:md5",
+ "//src/main/cpp/util:strings",
"//third_party/ijar:zip",
],
)