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

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

Issue 1983203003: Update third_party/protobuf to protobuf-v3.0.0-beta-3 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: owners Created 4 years, 6 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/Makefile.am ('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
1 # This file describes to Cocoapods how to integrate the Objective-C runtime into a dependent 1 # This file describes to Cocoapods how to integrate the Objective-C runtime into a dependent
2 # project. 2 # project.
3 # Despite this file being specific to Objective-C, it needs to be on the root of the repository. 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 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. 5 # dependent projects use the :git notation to refer to the library.
6 Pod::Spec.new do |s| 6 Pod::Spec.new do |s|
7 s.name = 'Protobuf' 7 s.name = 'Protobuf'
8 s.version = '3.0.0-alpha-4.1' 8 s.version = '3.0.0-beta-2'
9 s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.' 9 s.summary = 'Protocol Buffers v.3 runtime library for Objective-C.'
10 s.homepage = 'https://github.com/google/protobuf' 10 s.homepage = 'https://github.com/google/protobuf'
11 s.license = 'New BSD' 11 s.license = 'New BSD'
12 s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.c om' } 12 s.authors = { 'The Protocol Buffers contributors' => 'protobuf@googlegroups.c om' }
13 13
14 s.source = { :git => 'https://github.com/google/protobuf.git',
15 :tag => "v#{s.version}" }
16
14 s.source_files = 'objectivec/*.{h,m}', 17 s.source_files = 'objectivec/*.{h,m}',
15 'objectivec/google/protobuf/Any.pbobjc.{h,m}', 18 'objectivec/google/protobuf/Any.pbobjc.{h,m}',
16 'objectivec/google/protobuf/Api.pbobjc.{h,m}', 19 'objectivec/google/protobuf/Api.pbobjc.{h,m}',
17 'objectivec/google/protobuf/Descriptor.pbobjc.{h,m}',
18 'objectivec/google/protobuf/Duration.pbobjc.h', 20 'objectivec/google/protobuf/Duration.pbobjc.h',
19 'objectivec/google/protobuf/Empty.pbobjc.{h,m}', 21 'objectivec/google/protobuf/Empty.pbobjc.{h,m}',
20 'objectivec/google/protobuf/FieldMask.pbobjc.{h,m}', 22 'objectivec/google/protobuf/FieldMask.pbobjc.{h,m}',
21 'objectivec/google/protobuf/SourceContext.pbobjc.{h,m}', 23 'objectivec/google/protobuf/SourceContext.pbobjc.{h,m}',
22 'objectivec/google/protobuf/Struct.pbobjc.{h,m}', 24 'objectivec/google/protobuf/Struct.pbobjc.{h,m}',
23 'objectivec/google/protobuf/Timestamp.pbobjc.h', 25 'objectivec/google/protobuf/Timestamp.pbobjc.h',
24 'objectivec/google/protobuf/Type.pbobjc.{h,m}', 26 'objectivec/google/protobuf/Type.pbobjc.{h,m}',
25 'objectivec/google/protobuf/Wrappers.pbobjc.{h,m}' 27 'objectivec/google/protobuf/Wrappers.pbobjc.{h,m}'
26 # Timestamp.pbobjc.m and Duration.pbobjc.m are #imported by GPBWellKnownTypes. m. So we can't 28 # Timestamp.pbobjc.m and Duration.pbobjc.m are #imported by GPBWellKnownTypes. m. So we can't
27 # compile them (duplicate symbols), but we need them available for the importi ng: 29 # compile them (duplicate symbols), but we need them available for the importi ng:
28 s.preserve_paths = 'objectivec/google/protobuf/Duration.pbobjc.m', 30 s.preserve_paths = 'objectivec/google/protobuf/Duration.pbobjc.m',
29 'objectivec/google/protobuf/Timestamp.pbobjc.m' 31 'objectivec/google/protobuf/Timestamp.pbobjc.m'
30 # The following would cause duplicate symbol definitions. GPBProtocolBuffers i s expected to be 32 # The following would cause duplicate symbol definitions. GPBProtocolBuffers i s expected to be
31 # left out, as it's an umbrella implementation file. 33 # left out, as it's an umbrella implementation file.
32 s.exclude_files = 'objectivec/GPBProtocolBuffers.m' 34 s.exclude_files = 'objectivec/GPBProtocolBuffers.m'
33 s.header_mappings_dir = 'objectivec' 35 s.header_mappings_dir = 'objectivec'
34 36
35 s.ios.deployment_target = '7.1' 37 s.ios.deployment_target = '7.1'
36 s.osx.deployment_target = '10.9' 38 s.osx.deployment_target = '10.9'
37 s.requires_arc = false 39 s.requires_arc = false
38 end 40 end
OLDNEW
« no previous file with comments | « third_party/protobuf/Makefile.am ('k') | third_party/protobuf/README.chromium » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698