blob: c3dc7ea0fcd3cae0d401c198a671655f7deecb9c [file] [edit]
# Copyright 2019-present The Material Components for iOS Authors. All Rights Reserved.
#
# 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.
load(
"//:material_components_ios.bzl",
"mdc_objc_library",
"mdc_public_objc_library",
)
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
licenses(["notice"]) # Apache 2.0
mdc_objc_library(
name = "SnapshotSourceDummies",
srcs = native.glob([
"src/SourceDummies/*.h",
"src/SourceDummies/*.m",
]),
)
swift_library(
name = "SnapshotSwiftLib",
srcs = glob(["src/*.swift"]),
copts = [
"-swift-version",
"3",
],
)
mdc_public_objc_library(
name = "Snapshot",
deps = [
"@ios_snapshot_test_case//:SnapshotTestCase",
":SnapshotSourceDummies",
":SnapshotSwiftLib",
],
)