From a0f47a297f802630f937a3091964838eaf3b87d8 Mon Sep 17 00:00:00 2001 From: Robert Obryk Date: Tue, 21 Mar 2017 17:26:36 +0100 Subject: [PATCH] Remove gflags dependency from Bazel build. This was forgotten back in #97. --- BUILD | 6 ------ WORKSPACE | 11 ----------- 2 files changed, 17 deletions(-) diff --git a/BUILD b/BUILD index a4fe1e06..05bfc0da 100644 --- a/BUILD +++ b/BUILD @@ -20,14 +20,8 @@ cc_library( cc_binary( name = "guetzli", srcs = ["guetzli/guetzli.cc"], - linkopts = [ - # TODO(robryk): Remove once https://github.com/gflags/gflags/issues/176 - # is fixed - "-lpthread", - ], deps = [ ":guetzli_lib", - "//external:gflags", "@png_archive//:png", ], ) diff --git a/WORKSPACE b/WORKSPACE index 05e2ee70..0fb97782 100644 --- a/WORKSPACE +++ b/WORKSPACE @@ -19,17 +19,6 @@ new_http_archive( url = "http://zlib.net/fossils/zlib-1.2.10.tar.gz", ) -git_repository( - name = "gflags_git", - commit = "cce68f0c9c5d054017425e6e6fd54f696d36e8ee", - remote = "https://github.com/gflags/gflags.git", -) - -bind( - name = "gflags", - actual = "@gflags_git//:gflags", -) - local_repository( name = "butteraugli", path = "third_party/butteraugli/",