aboutsummaryrefslogtreecommitdiffhomepage
path: root/grpc.gemspec
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-01-23 09:10:14 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-01-23 09:10:14 -0800
commit34ebf5dd9eea03be7f744ea456cbd4acd950da86 (patch)
tree986d0c5bb8bf65906bc896f9efea358ecee27cac /grpc.gemspec
parentbd0c019c39afde113f5f66b27b1e6055f2635725 (diff)
Move object registry out of gpr
Diffstat (limited to 'grpc.gemspec')
-rw-r--r--grpc.gemspec4
1 files changed, 2 insertions, 2 deletions
diff --git a/grpc.gemspec b/grpc.gemspec
index 085b093c8e..9d2b4a94b1 100644
--- a/grpc.gemspec
+++ b/grpc.gemspec
@@ -88,7 +88,6 @@ Gem::Specification.new do |s|
s.files += %w( src/core/lib/gpr/fork.h )
s.files += %w( src/core/lib/gpr/mpscq.h )
s.files += %w( src/core/lib/gpr/murmur_hash.h )
- s.files += %w( src/core/lib/gpr/object_registry.h )
s.files += %w( src/core/lib/gpr/spinlock.h )
s.files += %w( src/core/lib/gpr/string.h )
s.files += %w( src/core/lib/gpr/string_windows.h )
@@ -123,7 +122,6 @@ Gem::Specification.new do |s|
s.files += %w( src/core/lib/gpr/log_windows.cc )
s.files += %w( src/core/lib/gpr/mpscq.cc )
s.files += %w( src/core/lib/gpr/murmur_hash.cc )
- s.files += %w( src/core/lib/gpr/object_registry.cc )
s.files += %w( src/core/lib/gpr/string.cc )
s.files += %w( src/core/lib/gpr/string_posix.cc )
s.files += %w( src/core/lib/gpr/string_util_windows.cc )
@@ -266,6 +264,7 @@ Gem::Specification.new do |s|
s.files += %w( src/core/lib/channel/handshaker.h )
s.files += %w( src/core/lib/channel/handshaker_factory.h )
s.files += %w( src/core/lib/channel/handshaker_registry.h )
+ s.files += %w( src/core/lib/channel/object_registry.cc )
s.files += %w( src/core/lib/compression/algorithm_metadata.h )
s.files += %w( src/core/lib/compression/message_compress.h )
s.files += %w( src/core/lib/compression/stream_compression.h )
@@ -412,6 +411,7 @@ Gem::Specification.new do |s|
s.files += %w( src/core/lib/channel/handshaker.cc )
s.files += %w( src/core/lib/channel/handshaker_factory.cc )
s.files += %w( src/core/lib/channel/handshaker_registry.cc )
+ s.files += %w( src/core/lib/channel/object_registry.cc )
s.files += %w( src/core/lib/compression/compression.cc )
s.files += %w( src/core/lib/compression/message_compress.cc )
s.files += %w( src/core/lib/compression/stream_compression.cc )