mirror of
https://github.com/TelegramMessenger/Telegram-iOS.git
synced 2026-07-06 03:33:41 +02:00
Temp
This commit is contained in:
parent
ca0668df3d
commit
fec9a9b28e
267 changed files with 1273 additions and 3613 deletions
|
|
@ -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",
|
||||
|
|
|
|||
16
submodules/OverlayStatusController/BUILD
Normal file
16
submodules/OverlayStatusController/BUILD
Normal 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",
|
||||
],
|
||||
)
|
||||
19
submodules/OverlayStatusController/Impl/BUILD
Normal file
19
submodules/OverlayStatusController/Impl/BUILD
Normal 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",
|
||||
],
|
||||
)
|
||||
|
|
@ -2,6 +2,7 @@ import Foundation
|
|||
import UIKit
|
||||
import Display
|
||||
import AppBundle
|
||||
import OverlayStatusControllerImpl
|
||||
|
||||
public enum OverlayStatusControllerType {
|
||||
case loading(cancelled: (() -> Void)?)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue