Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 7 additions & 25 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright 2018 Google Inc.
# Copyright 2018 Google LLC.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -12,32 +12,14 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
platform :ios, '9.0'

target 'TestsHost' do
pod 'OCMock', '3.4.1'
end

target 'TestsBundle' do
pod 'OCMock', '3.4.1'
end

target 'ServiceTests' do
pod 'OCMock', '3.4.1'
end
platform :ios, '9.0'

target 'ServicePerfTests' do
pod 'OCMock', '3.4.1'
end
ocmock_targets = %w(TestsHost TestsBundle ServiceTests ServicePerfTests DeviceUnitTests)

target 'DeviceUnitTests' do
pod 'OCMock', '3.4.1'
end

post_install do |installer_representation|
installer_representation.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO'
end
ocmock_targets.each do |t|
target t do
pod 'OCMock', '3.4.1'
end
end