From 47e4d3fd03a0d59fb6408c91ce5bf24d724b2513 Mon Sep 17 00:00:00 2001 From: Bradley White <14679271+devbww@users.noreply.github.com> Date: Mon, 15 Apr 2019 17:50:30 -0400 Subject: [PATCH] Correct some BUILD formatting errors introduced in #102. --- BUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD b/BUILD index 765cb87f..34a52f4e 100644 --- a/BUILD +++ b/BUILD @@ -17,7 +17,7 @@ licenses(["notice"]) # Apache License config_setting( name = "osx", constraint_values = [ - "@bazel_tools//platforms:osx" + "@bazel_tools//platforms:osx", ], ) @@ -65,6 +65,7 @@ cc_library( "include/cctz/time_zone.h", "include/cctz/zone_info_source.h", ], + includes = ["include"], linkopts = select({ "//:osx": [ "-framework Foundation", @@ -74,7 +75,6 @@ cc_library( ], "//conditions:default": [], }), - includes = ["include"], visibility = ["//visibility:public"], deps = [":civil_time"], )