diff options
author | Craig Tiller <ctiller@google.com> | 2017-08-31 11:22:52 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-08-31 11:22:52 -0700 |
commit | 6e739745e298bf205eb2553d3a3c8a3eed06fff1 (patch) | |
tree | 9d9683a209647997d2e813605947c2b0eab5def0 /gRPC-Core.podspec | |
parent | bcf6ca8d498c7f729aa164067b34d8f465b56084 (diff) |
Fix header location error
Diffstat (limited to 'gRPC-Core.podspec')
-rw-r--r-- | gRPC-Core.podspec | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gRPC-Core.podspec b/gRPC-Core.podspec index f2c59d9771..c76b520808 100644 --- a/gRPC-Core.podspec +++ b/gRPC-Core.podspec @@ -183,9 +183,7 @@ Pod::Spec.new do |s| ss.dependency 'nanopb', '~> 0.3' # To save you from scrolling, this is the last part of the podspec. - ss.source_files = 'src/core/lib/debug/stats.h', - 'src/core/lib/debug/stats_data.h', - 'src/core/lib/profiling/timers.h', + ss.source_files = 'src/core/lib/profiling/timers.h', 'src/core/lib/support/arena.h', 'src/core/lib/support/atomic.h', 'src/core/lib/support/atomic_with_atm.h', @@ -331,6 +329,8 @@ Pod::Spec.new do |s| 'src/core/lib/compression/algorithm_metadata.h', 'src/core/lib/compression/message_compress.h', 'src/core/lib/compression/stream_compression.h', + 'src/core/lib/debug/stats.h', + 'src/core/lib/debug/stats_data.h', 'src/core/lib/http/format_request.h', 'src/core/lib/http/httpcli.h', 'src/core/lib/http/parser.h', @@ -728,9 +728,7 @@ Pod::Spec.new do |s| 'src/core/ext/filters/workarounds/workaround_utils.c', 'src/core/plugin_registry/grpc_plugin_registry.c' - ss.private_header_files = 'src/core/lib/debug/stats.h', - 'src/core/lib/debug/stats_data.h', - 'src/core/lib/profiling/timers.h', + ss.private_header_files = 'src/core/lib/profiling/timers.h', 'src/core/lib/support/arena.h', 'src/core/lib/support/atomic.h', 'src/core/lib/support/atomic_with_atm.h', @@ -830,6 +828,8 @@ Pod::Spec.new do |s| 'src/core/lib/compression/algorithm_metadata.h', 'src/core/lib/compression/message_compress.h', 'src/core/lib/compression/stream_compression.h', + 'src/core/lib/debug/stats.h', + 'src/core/lib/debug/stats_data.h', 'src/core/lib/http/format_request.h', 'src/core/lib/http/httpcli.h', 'src/core/lib/http/parser.h', |