-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
64 lines (61 loc) · 1.9 KB
/
BUILD
File metadata and controls
64 lines (61 loc) · 1.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
load("@rules_swift//swift:swift.bzl", "swift_library")
load("@rules_apple//apple:ios.bzl", "ios_application")
load("@rules_xcodeproj//xcodeproj:defs.bzl", "top_level_target", "xcodeproj")
swift_library(
name = "InjectionLiteSampleBazelProject",
srcs = [
"InjectionLiteSampleBazelProject/InjectionLiteSampleBazelProjectApp.swift",
"InjectionLiteSampleBazelProject/ContentView.swift",
"InjectionLiteSampleBazelProject/UIKitBridges.swift",
],
deps = [
"//UserProfile:UserProfile",
"//DataAnalytics:DataAnalytics",
"//NetworkService:NetworkService",
"//AppCore:AppCore",
"//Navigation:Navigation",
"//Auth:Auth",
"//Settings:Settings",
"//ToDoList:ToDoList",
"//ToDoDetail:ToDoDetail",
"//ToDoCreate:ToDoCreate",
"//Reminders:Reminders",
"//Sharing:Sharing",
"@swiftpkg_injectionnext//:InjectionNext",
"@swiftpkg_inject//:Inject",
],
module_name = "InjectionLiteSampleBazelProject",
visibility = ["//visibility:public"],
)
ios_application(
name = "InjectionLiteSampleBazelProjectApp",
bundle_id = "com.example.InjectionLiteSampleBazelProject",
families = [
"iphone",
"ipad",
],
infoplists = ["InjectionLiteSampleBazelProject/Info.plist"],
minimum_os_version = "15.0",
deps = [
":InjectionLiteSampleBazelProject",
"@swiftpkg_injectionnext//:InjectionNext",
"@swiftpkg_inject//:Inject",
],
linkopts = [
"-interposable",
],
visibility = ["//visibility:public"],
)
xcodeproj(
name = "InjectionLiteSampleProject",
project_name = "InjectionLiteSampleBazelProject",
tags = ["manual"],
top_level_targets = [
top_level_target(
":InjectionLiteSampleBazelProjectApp",
target_environments = [
"simulator",
],
),
],
)