aboutsummaryrefslogtreecommitdiff
path: root/src/base
diff options
context:
space:
mode:
authorGravatar Jeff McGlynn <jwmcglynn@google.com>2019-01-24 16:43:50 -0800
committerGravatar Jeff McGlynn <jeff@jeffmcglynn.com>2019-01-24 17:11:52 -0800
commit4e0cc971ea82fbb985f27933af23d1afb3994290 (patch)
tree2914807c2be3ea0a0f2fc29d5faf97c19fabb368 /src/base
parentf9809cf95cd592923e614f16427c4303c0eec64c (diff)
Sync/format build files
* Always compile astc_utils with -O3, since it is very slow when built with fastbuild. * Add missing licenses() declarations. * Declare test library as testonly. * Run BUILD file formatter. Additionally, fix one ambiguous usage of auto in src/decoder/parition.cc
Diffstat (limited to 'src/base')
-rw-r--r--src/base/BUILD.bazel3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/base/BUILD.bazel b/src/base/BUILD.bazel
index 09f723d..84d2131 100644
--- a/src/base/BUILD.bazel
+++ b/src/base/BUILD.bazel
@@ -12,6 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
+licenses(["notice"])
+
cc_library(
name = "base",
hdrs = [
@@ -24,6 +26,7 @@ cc_library(
"uint128.h",
"utils.h",
],
+ features = ["-parse_headers"],
visibility = ["//src/decoder:__pkg__"],
)