upb: remove reflection:internal as a dep in upb_generator/

PiperOrigin-RevId: 601286979
pull/15580/head
Eric Salo 2024-01-24 17:43:19 -08:00 committed by Copybara-Service
parent 7f1ef7ea09
commit dad74e2db7
2 changed files with 14 additions and 4 deletions

View File

@ -239,12 +239,12 @@ cc_library(
"//upb:descriptor_upb_proto",
"//upb:json",
"//upb:mem",
"//upb:message",
"//upb:mini_descriptor",
"//upb:mini_table",
"//upb:port",
"//upb:reflection",
"//upb:wire",
"//upb/reflection:internal",
],
)

View File

@ -7,12 +7,22 @@
#include "upb_generator/get_used_fields.h"
#include <stddef.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "google/protobuf/descriptor.upb.h"
#include "google/protobuf/compiler/plugin.upb.h"
#include "upb/reflection/def_pool.h"
#include "upb/reflection/field_def.h"
#include "upb/base/descriptor_constants.h"
#include "upb/base/string_view.h"
#include "upb/mem/arena.h"
#include "upb/message/array.h"
#include "upb/message/map.h"
#include "upb/message/message.h"
#include "upb/mini_table/message.h"
#include "upb/reflection/def.h"
#include "upb/reflection/message.h"
#include "upb/reflection/message_def.h"
#include "upb/wire/decode.h"
// Must be last.