From 241e87d143516f1d885c5da8bb633a805833a31d Mon Sep 17 00:00:00 2001 From: iceboy Date: Mon, 15 Oct 2018 12:18:15 -0700 Subject: [PATCH] add :runtime_cc target (#4994) --- BUILD | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/BUILD b/BUILD index a6e1a2db6..631452c79 100644 --- a/BUILD +++ b/BUILD @@ -104,6 +104,18 @@ cc_binary( ], ) +cc_library( + name = "runtime_cc", + hdrs = [ + "include/flatbuffers/base.h", + "include/flatbuffers/flatbuffers.h", + "include/flatbuffers/stl_emulation.h", + "include/flatbuffers/util.h", + ], + includes = ["include/"], + linkstatic = 1, +) + # Test binary. cc_test( name = "flatbuffers_test",