Skip to content

Commit d662ec9

Browse files
author
Adam Cozzette
authored
Update the automake and Bazel configs to be consistent about field_access_listener.cc (#8823)
In an earlier change I moved field_access_listener.cc from the lite runtime to the full runtime in the CMake configuration, but this caused //:build_files_updated_unittest to start failing because it expects all three build systems to be consistent. To fix that, I updated the Automake configuration and then ran ./update_file_lists.sh to propagate that change to the other configs.
1 parent b90ec9c commit d662ec9

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

BUILD

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ cc_library(
135135
"src/google/protobuf/arena.cc",
136136
"src/google/protobuf/arenastring.cc",
137137
"src/google/protobuf/extension_set.cc",
138-
"src/google/protobuf/field_access_listener.cc",
139138
"src/google/protobuf/generated_enum_util.cc",
140139
"src/google/protobuf/generated_message_table_driven_lite.cc",
141140
"src/google/protobuf/generated_message_util.cc",
@@ -193,6 +192,7 @@ cc_library(
193192
"src/google/protobuf/dynamic_message.cc",
194193
"src/google/protobuf/empty.pb.cc",
195194
"src/google/protobuf/extension_set_heavy.cc",
195+
"src/google/protobuf/field_access_listener.cc",
196196
"src/google/protobuf/field_mask.pb.cc",
197197
"src/google/protobuf/generated_message_reflection.cc",
198198
"src/google/protobuf/generated_message_table_driven.cc",

src/Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,6 @@ libprotobuf_lite_la_SOURCES = \
207207
google/protobuf/arena.cc \
208208
google/protobuf/arenastring.cc \
209209
google/protobuf/extension_set.cc \
210-
google/protobuf/field_access_listener.cc \
211210
google/protobuf/generated_enum_util.cc \
212211
google/protobuf/generated_message_util.cc \
213212
google/protobuf/generated_message_table_driven_lite.h \
@@ -242,6 +241,7 @@ libprotobuf_la_SOURCES = \
242241
google/protobuf/dynamic_message.cc \
243242
google/protobuf/empty.pb.cc \
244243
google/protobuf/extension_set_heavy.cc \
244+
google/protobuf/field_access_listener.cc \
245245
google/protobuf/field_mask.pb.cc \
246246
google/protobuf/generated_message_reflection.cc \
247247
google/protobuf/generated_message_table_driven_lite.h \

0 commit comments

Comments
 (0)