CronetFramework.podspec 6.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #
  2. # Be sure to run `pod spec lint cronet.podspec' to ensure this is a
  3. # valid spec and to remove all comments including this before submitting the spec.
  4. #
  5. # To learn more about Podspec attributes see http://docs.cocoapods.org/specification.html
  6. # To see working Podspecs in the CocoaPods repo see https://github.com/CocoaPods/Specs/
  7. #
  8. Pod::Spec.new do |s|
  9. # ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  10. #
  11. # These will help people to find your library, and whilst it
  12. # can feel like a chore to fill in it's definitely to your advantage. The
  13. # summary should be tweet-length, and the description more in depth.
  14. #
  15. s.name = "CronetFramework"
  16. s.version = "0.0.2"
  17. s.summary = "Cronet, precompiled and used as a framework."
  18. # This description is used to generate tags and improve search results.
  19. # * Think: What does it do? Why did you write it? What is the focus?
  20. # * Try to keep it short, snappy and to the point.
  21. # * Write the description between the DESC delimiters below.
  22. # * Finally, don't worry about the indent, CocoaPods strips it!
  23. #s.description = <<-DESC
  24. # DESC
  25. s.homepage = "http://chromium.org"
  26. # s.screenshots = "www.example.com/screenshots_1.gif", "www.example.com/screenshots_2.gif"
  27. # ――― Spec License ――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  28. #
  29. # Licensing your code is important. See http://choosealicense.com for more info.
  30. # CocoaPods will detect a license file if there is a named LICENSE*
  31. # Popular ones are 'MIT', 'BSD' and 'Apache License, Version 2.0'.
  32. #
  33. s.license = { :type => 'BSD' }
  34. s.vendored_framework = "Cronet.framework"
  35. # ――― Author Metadata ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  36. #
  37. # Specify the authors of the library, with email addresses. Email addresses
  38. # of the authors are extracted from the SCM log. E.g. $ git log. CocoaPods also
  39. # accepts just a name if you'd rather not provide an email address.
  40. #
  41. # Specify a social_media_url where others can refer to, for example a twitter
  42. # profile URL.
  43. #
  44. s.author = ""
  45. # Or just: s.author = ""
  46. # s.authors = { "" => "makarandd@google.com" }
  47. # s.social_media_url = "http://twitter.com/"
  48. # ――― Platform Specifics ――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  49. #
  50. # If this Pod runs only on iOS or OS X, then specify the platform and
  51. # the deployment target. You can optionally include the target after the platform.
  52. #
  53. # s.platform = :ios
  54. # s.platform = :ios, "5.0"
  55. # When using multiple platforms
  56. s.ios.deployment_target = "8.0"
  57. # s.osx.deployment_target = "10.7"
  58. # s.watchos.deployment_target = "2.0"
  59. # s.tvos.deployment_target = "9.0"
  60. # ――― Source Location ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  61. #
  62. # Specify the location from where the source should be retrieved.
  63. # Supports git, hg, bzr, svn and HTTP.
  64. #
  65. s.source = { :http => 'https://storage.googleapis.com/grpc-precompiled-binaries/cronet/Cronet.framework.zip' }
  66. # ――― Source Code ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  67. #
  68. # CocoaPods is smart about how it includes source code. For source files
  69. # giving a folder will include any swift, h, m, mm, c & cpp files.
  70. # For header files it will include any header in the folder.
  71. # Not including the public_header_files will make all headers public.
  72. #
  73. #s.public_header_files = "/*.h"
  74. # s.public_header_files = "Classes/**/*.h"
  75. # ――― Resources ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  76. #
  77. # A list of resources included with the Pod. These are copied into the
  78. # target bundle with a build phase script. Anything else will be cleaned.
  79. # You can preserve files from being cleaned, please don't preserve
  80. # non-essential files like tests, examples and documentation.
  81. #
  82. # s.resource = "icon.png"
  83. # s.resources = "Resources/*.png"
  84. # s.preserve_paths = "FilesToSave", "MoreFilesToSave"
  85. s.preserve_paths = "Cronet.framework"
  86. s.public_header_files = "Cronet.framework/Headers/**/*{.h}"
  87. # ――― Project Linking ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  88. #
  89. # Link your library with frameworks, or libraries. Libraries do not include
  90. # the lib prefix of their name.
  91. #
  92. # s.framework = "SomeFramework"
  93. # s.frameworks = "SomeFramework", "AnotherFramework"
  94. # s.library = "iconv"
  95. # s.libraries = "iconv", "xml2"
  96. # ――― Project Settings ――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
  97. #
  98. # If your library depends on compiler flags you can set them in the xcconfig hash
  99. # where they will only apply to your library. If you depend on other Podspecs
  100. # you can include multiple dependencies to ensure it works.
  101. # s.requires_arc = true
  102. # s.xcconfig = { "HEADER_SEARCH_PATHS" => "$(SDKROOT)/usr/include/libxml2" }
  103. # s.dependency "JSONKit", "~> 1.4"
  104. end