This commit is contained in:
Ali 2019-11-14 23:27:44 +04:00
parent ca0668df3d
commit fec9a9b28e
267 changed files with 1273 additions and 3613 deletions

View file

@ -12,13 +12,13 @@ static_library(
name = "OverlayStatusController",
srcs = glob([
"Sources/**/*.swift",
"Sources/**/*.m",
"Impl/**/*.m",
]),
headers = glob([
"Sources/**/*.h",
"Impl/**/*.h",
]),
exported_headers = glob([
"Sources/**/*.h",
"Impl/**/*.h",
]),
deps = [
"//submodules/Display:Display#shared",

View file

@ -0,0 +1,16 @@
load("@build_bazel_rules_swift//swift:swift.bzl", "swift_library")
swift_library(
name = "OverlayStatusController",
module_name = "OverlayStatusController",
srcs = glob([
"Sources/**/*.swift",
]),
deps = [
"//submodules/Display:Display",
"//submodules/OverlayStatusController/Impl:OverlayStatusControllerImpl"
],
visibility = [
"//visibility:public",
],
)

View file

@ -0,0 +1,19 @@
objc_library(
name = "OverlayStatusControllerImpl",
module_name = "OverlayStatusControllerImpl",
srcs = glob([
"Sources/**/*.m",
]),
hdrs = glob([
"Sources/**/*.h",
]),
includes = [
"Sources",
],
deps = [
],
visibility = [
"//visibility:public",
],
)

View file

@ -2,6 +2,7 @@ import Foundation
import UIKit
import Display
import AppBundle
import OverlayStatusControllerImpl
public enum OverlayStatusControllerType {
case loading(cancelled: (() -> Void)?)