Ensure utf8 implementations are included in build

This commit is contained in:
Richard Belleville 2024-01-02 16:36:01 -08:00
parent 114263530e
commit ee57fd9e0e
2 changed files with 3 additions and 1 deletions

View File

@ -296,7 +296,8 @@ CC_FILES=[
'third_party/protobuf/src/google/protobuf/text_format.cc',
'third_party/protobuf/src/google/protobuf/unknown_field_set.cc',
'third_party/protobuf/src/google/protobuf/wire_format.cc',
'third_party/protobuf/src/google/protobuf/wire_format_lite.cc'
'third_party/protobuf/src/google/protobuf/wire_format_lite.cc',
'third_party/protobuf/third_party/utf8_range/utf8_validity.cc'
]
PROTO_FILES=[

View File

@ -63,6 +63,7 @@ COMMIT_HASH_SUFFIX = '"'
EXTERNAL_LINKS = [
("@com_google_absl//", "third_party/abseil-cpp/"),
("@com_google_protobuf//", "third_party/protobuf/"),
("@utf8_range//", "third_party/protobuf/third_party/utf8_range"),
]
PROTOBUF_PROTO_PREFIX = "@com_google_protobuf//src/"