diff options
author | Michael Beardsworth <beardsworth@google.com> | 2020-01-06 10:00:59 -0800 |
---|---|---|
committer | Wouter van Oortmerssen <aardappel@gmail.com> | 2020-01-06 10:00:59 -0800 |
commit | 21b7061963233fddc726a3dfb9a4131a4ce6cb0d (patch) | |
tree | 5a30cc578cdf31f429b6ab6471546e80e660fb89 /tests/BUILD | |
parent | 35daaf83d334156749bb9f9b43ce96a1c86d529a (diff) | |
download | flatbuffers-21b7061963233fddc726a3dfb9a4131a4ce6cb0d.tar.gz flatbuffers-21b7061963233fddc726a3dfb9a4131a4ce6cb0d.tar.bz2 flatbuffers-21b7061963233fddc726a3dfb9a4131a4ce6cb0d.zip |
(Optionally) add an additional suffix namespace to generated fbs files. (#5698)
This change allows for the generation of fbs files (from proto) that
don't contain name collisions with the protobuf generated C++ code,
allowing both the proto and fbs message types to be linked into the same binary.
Diffstat (limited to 'tests/BUILD')
-rw-r--r-- | tests/BUILD | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/BUILD b/tests/BUILD index 63086135..b61824c7 100644 --- a/tests/BUILD +++ b/tests/BUILD @@ -45,8 +45,10 @@ cc_test( ":prototest/test.golden", ":prototest/test.proto", ":prototest/test_include.golden", + ":prototest/test_suffix.golden", ":prototest/test_union.golden", ":prototest/test_union_include.golden", + ":prototest/test_union_suffix.golden", ":unicode_test.json", ":union_vector/union_vector.fbs", ":union_vector/union_vector.json", |