Podfile 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. source 'https://github.com/CocoaPods/Specs.git'
  2. install! 'cocoapods', :deterministic_uuids => false
  3. # Location of gRPC's repo root relative to this file.
  4. GRPC_LOCAL_SRC = '../../..'
  5. def grpc_deps
  6. pod 'Protobuf', :path => "#{GRPC_LOCAL_SRC}/third_party/protobuf", :inhibit_warnings => true
  7. pod '!ProtoCompiler', :path => "#{GRPC_LOCAL_SRC}/src/objective-c"
  8. pod '!ProtoCompiler-gRPCPlugin', :path => "#{GRPC_LOCAL_SRC}/src/objective-c"
  9. pod 'BoringSSL-GRPC', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c", :inhibit_warnings => true
  10. pod 'gRPC/InternalTesting', :path => GRPC_LOCAL_SRC
  11. pod 'gRPC-Core', :path => GRPC_LOCAL_SRC
  12. pod 'gRPC-RxLibrary', :path => GRPC_LOCAL_SRC
  13. pod 'gRPC-ProtoRPC', :path => GRPC_LOCAL_SRC, :inhibit_warnings => true
  14. pod 'RemoteTest', :path => "RemoteTestClient", :inhibit_warnings => true
  15. end
  16. target 'TvTests' do
  17. platform :tvos, '10.0'
  18. grpc_deps
  19. end
  20. target 'MacTests' do
  21. platform :osx, '10.13'
  22. grpc_deps
  23. end
  24. %w(
  25. UnitTests
  26. InteropTests
  27. ).each do |target_name|
  28. target target_name do
  29. platform :ios, '8.0'
  30. grpc_deps
  31. end
  32. end
  33. target 'CronetTests' do
  34. platform :ios, '8.0'
  35. grpc_deps
  36. pod 'gRPC/GRPCCoreCronet', :path => GRPC_LOCAL_SRC
  37. pod 'CronetFramework', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
  38. pod 'gRPC-Core/Tests', :path => GRPC_LOCAL_SRC, :inhibit_warnings => true
  39. end
  40. target 'PerfTests' do
  41. platform :ios, '8.0'
  42. grpc_deps
  43. pod 'gRPC/GRPCCoreCronet', :path => GRPC_LOCAL_SRC
  44. pod 'CronetFramework', :podspec => "#{GRPC_LOCAL_SRC}/src/objective-c"
  45. end
  46. # gRPC-Core.podspec needs to be modified to be successfully used for local development. A Podfile's
  47. # pre_install hook lets us do that. The block passed to it runs after the podspecs are downloaded
  48. # and before they are installed in the user project.
  49. #
  50. # This podspec searches for the gRPC core library headers under "$(PODS_ROOT)/gRPC-Core", where
  51. # Cocoapods normally places the downloaded sources. When doing local development of the libraries,
  52. # though, Cocoapods just takes the sources from whatever directory was specified using `:path`, and
  53. # doesn't copy them under $(PODS_ROOT). When using static libraries, one can sometimes rely on the
  54. # symbolic links to the pods headers that Cocoapods creates under "$(PODS_ROOT)/Headers". But those
  55. # aren't created when using dynamic frameworks. So our solution is to modify the podspec on the fly
  56. # to point at the local directory where the sources are.
  57. #
  58. # TODO(jcanizales): Send a PR to Cocoapods to get rid of this need.
  59. pre_install do |installer|
  60. # This is the gRPC-Core podspec object, as initialized by its podspec file.
  61. grpc_core_spec = installer.pod_targets.find{|t| t.name.start_with?('gRPC-Core')}.root_spec
  62. # Copied from gRPC-Core.podspec, except for the adjusted src_root:
  63. src_root = "$(PODS_ROOT)/../#{GRPC_LOCAL_SRC}"
  64. grpc_core_spec.pod_target_xcconfig = {
  65. 'GRPC_SRC_ROOT' => src_root,
  66. 'HEADER_SEARCH_PATHS' => '"$(inherited)" "$(GRPC_SRC_ROOT)/include"',
  67. 'USER_HEADER_SEARCH_PATHS' => '"$(GRPC_SRC_ROOT)"',
  68. # If we don't set these two settings, `include/grpc/support/time.h` and
  69. # `src/core/lib/gpr/string.h` shadow the system `<time.h>` and `<string.h>`, breaking the
  70. # build.
  71. 'USE_HEADERMAP' => 'NO',
  72. 'ALWAYS_SEARCH_USER_PATHS' => 'NO',
  73. }
  74. end
  75. post_install do |installer|
  76. installer.pods_project.targets.each do |target|
  77. target.build_configurations.each do |config|
  78. config.build_settings['GCC_TREAT_WARNINGS_AS_ERRORS'] = 'YES'
  79. end
  80. # CocoaPods creates duplicated library targets of gRPC-Core when the test targets include
  81. # non-default subspecs of gRPC-Core. All of these library targets start with prefix 'gRPC-Core'
  82. # and require the same error suppresion.
  83. if target.name.start_with?('gRPC-Core')
  84. target.build_configurations.each do |config|
  85. # TODO(zyc): Remove this setting after the issue is resolved
  86. # GPR_UNREACHABLE_CODE causes "Control may reach end of non-void
  87. # function" warning
  88. config.build_settings['GCC_WARN_ABOUT_RETURN_TYPE'] = 'NO'
  89. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = '$(inherited) COCOAPODS=1 GRPC_CRONET_WITH_PACKET_COALESCING=1 GRPC_CFSTREAM=1'
  90. end
  91. end
  92. # Activate Cronet for the dedicated build configuration 'Cronet', which will be used solely by
  93. # the test target 'InteropTestsRemoteWithCronet'
  94. # Activate GRPCCall+InternalTests functions for the dedicated build configuration 'Test', which will
  95. # be used by all test targets using it.
  96. if /gRPC(-macOS|-iOS|-tvOS|\.|-[0-9a-f])/.match(target.name)
  97. target.build_configurations.each do |config|
  98. if config.name == 'Cronet'
  99. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = '$(inherited) COCOAPODS=1 GRPC_COMPILE_WITH_CRONET=1 GRPC_TEST_OBJC=1'
  100. elsif config.name == 'Test'
  101. config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] = '$(inherited) COCOAPODS=1 GRPC_TEST_OBJC=1'
  102. end
  103. end
  104. end
  105. # Enable NSAssert on gRPC
  106. if /(gRPC|ProtoRPC|RxLibrary)/.match(target.name)
  107. target.build_configurations.each do |config|
  108. if config.name != 'Release'
  109. config.build_settings['ENABLE_NS_ASSERTIONS'] = 'YES'
  110. end
  111. end
  112. end
  113. end
  114. end