Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(208)

Side by Side Diff: third_party/protobuf/Protobuf.podspec

Issue 1322483002: Revert https://codereview.chromium.org/1291903002 (protobuf roll). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « third_party/protobuf/OWNERS ('k') | third_party/protobuf/README.chromium » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # This file describes to Cocoapods how to integrate the Objective-C runtime into a dependent
2 # project.
3 # Despite this file being specific to Objective-C, it needs to be on the root of the repository.
4 # Otherwise, Cocoapods gives trouble like not picking up the license file correc tly, or not letting
5 # dependent projects use the :git notation to refer to the library.
6 Pod::Spec.new do |s|
7 s.name = 'Protobuf'
8 s.version = '3.0.0-alpha-4-pre'
9 s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
10 s.homepage = 'https://github.com/google/protobuf'
11 s.license = 'New BSD'
12 s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.c om' }
13
14 s.source_files = 'objectivec/GPBProtocolBuffers.{h,m}'
15 # GPBProtocolBuffers.{h,m} are umbrella files. We need Cocoapods to preserve t he files imported by
16 # them.
17 s.preserve_paths = 'objectivec/*.{h,m}',
18 'objectivec/google/protobuf/*.pbobjc.{h,m}'
19 s.header_mappings_dir = 'objectivec'
20
21 s.ios.deployment_target = '7.1'
22 s.osx.deployment_target = '10.9'
23 s.requires_arc = false
24 end
OLDNEW
« no previous file with comments | « third_party/protobuf/OWNERS ('k') | third_party/protobuf/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698