diff options
author | Craig Tiller <ctiller@google.com> | 2016-03-11 10:54:36 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-03-11 10:54:36 -0800 |
commit | c72cc42238e914953ae6cf69c1c78a87a302afd5 (patch) | |
tree | 3f052d72b8c957079d578ca86d464ef0b0075037 /gRPC.podspec | |
parent | 180ca8635057f2dddeef88d6f4ce5d8f13074b4a (diff) |
Build out backoff as a library
Diffstat (limited to 'gRPC.podspec')
-rw-r--r-- | gRPC.podspec | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gRPC.podspec b/gRPC.podspec index f3103ea79a..9129c744ad 100644 --- a/gRPC.podspec +++ b/gRPC.podspec @@ -64,6 +64,7 @@ Pod::Spec.new do |s| # Core cross-platform gRPC library, written in C. s.subspec 'C-Core' do |ss| ss.source_files = 'src/core/profiling/timers.h', + 'src/core/support/backoff.h', 'src/core/support/block_annotate.h', 'src/core/support/env.h', 'src/core/support/load_file.h', @@ -120,6 +121,7 @@ Pod::Spec.new do |s| 'src/core/profiling/stap_timers.c', 'src/core/support/alloc.c', 'src/core/support/avl.c', + 'src/core/support/backoff.c', 'src/core/support/cmdline.c', 'src/core/support/cpu_iphone.c', 'src/core/support/cpu_linux.c', @@ -470,6 +472,7 @@ Pod::Spec.new do |s| 'third_party/nanopb/pb_encode.c' ss.private_header_files = 'src/core/profiling/timers.h', + 'src/core/support/backoff.h', 'src/core/support/block_annotate.h', 'src/core/support/env.h', 'src/core/support/load_file.h', |