| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- // swift-tools-version:5.3
- // The swift-tools-version declares the minimum version of Swift required to build this package.
- // Copyright 2021 Google LLC
- //
- // Licensed under the Apache License, Version 2.0 (the "License");
- // you may not use this file except in compliance with the License.
- // You may obtain a copy of the License at
- //
- // http://www.apache.org/licenses/LICENSE-2.0
- //
- // Unless required by applicable law or agreed to in writing, software
- // distributed under the License is distributed on an "AS IS" BASIS,
- // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- // See the License for the specific language governing permissions and
- // limitations under the License.
- import PackageDescription
- let googleSignInVersion = "6.0.0"
- let package = Package(
- name: "GoogleSignIn",
- defaultLocalization: "en",
- platforms: [.iOS(.v9)],
- products: [
- .library(
- name: "GoogleSignIn",
- targets: ["GoogleSignIn"]
- ),
- ],
- dependencies: [
- .package(
- name: "AppAuth",
- url: "https://github.com/openid/AppAuth-iOS.git",
- "1.4.0" ..< "2.0.0"),
- .package(
- name: "GTMAppAuth",
- url: "https://github.com/google/GTMAppAuth.git",
- "1.2.0" ..< "2.0.0"),
- .package(
- name: "GTMSessionFetcher",
- url: "https://github.com/google/gtm-session-fetcher.git",
- "1.5.0" ..< "2.0.0"),
- .package(
- name: "OCMock",
- url: "https://github.com/firebase/ocmock.git",
- .revision("7291762d3551c5c7e31c49cce40a0e391a52e889")),
- .package(
- name: "GoogleUtilities",
- url: "https://github.com/google/GoogleUtilities.git",
- "7.3.0" ..< "8.0.0"),
- ],
- targets: [
- .target(
- name: "GoogleSignIn",
- dependencies: [
- .product(name: "AppAuth", package: "AppAuth"),
- .product(name: "GTMAppAuth", package: "GTMAppAuth"),
- .product(name: "GTMSessionFetcherCore", package: "GTMSessionFetcher"),
- ],
- path: "GoogleSignIn/Sources",
- resources: [
- .process("Resources"),
- .process("Strings"),
- ],
- publicHeadersPath: "Public",
- cSettings: [
- .headerSearchPath("../../"),
- .define("GID_SDK_VERSION", to: googleSignInVersion),
- ],
- linkerSettings: [
- .linkedFramework("CoreGraphics"),
- .linkedFramework("CoreText"),
- .linkedFramework("Foundation"),
- .linkedFramework("LocalAuthentication"),
- .linkedFramework("Security"),
- .linkedFramework("UIKit"),
- ]
- ),
- .testTarget(
- name: "GoogleSignIn-UnitTests",
- dependencies: [
- "GoogleSignIn",
- "OCMock",
- .product(name: "AppAuth", package: "AppAuth"),
- .product(name: "GTMAppAuth", package: "GTMAppAuth"),
- .product(name: "GTMSessionFetcherCore", package: "GTMSessionFetcher"),
- .product(name: "GULMethodSwizzler", package: "GoogleUtilities"),
- .product(name: "GULSwizzlerTestHelpers", package: "GoogleUtilities"),
- ],
- path: "GoogleSignIn/Tests/Unit",
- cSettings: [
- .headerSearchPath("../../../"),
- .define("GID_SDK_VERSION", to: googleSignInVersion),
- ]
- ),
- ]
- )
|