File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 1+ load (
2+ "@build_bazel_rules_apple//apple:ios.bzl" ,
3+ "ios_static_framework" ,
4+ )
5+ load (
6+ "@build_bazel_rules_apple//apple:resources.bzl" ,
7+ "apple_resource_bundle" ,
8+ )
9+ load (
10+ "@build_bazel_rules_swift//swift:swift.bzl" ,
11+ "swift_library" ,
12+ )
13+
14+ apple_resource_bundle (
15+ name = "Assets" ,
16+ resources = glob ([
17+ "Assets.xcassets/**" ,
18+ ]),
19+ )
20+
21+ swift_library (
22+ name = "InAppViewDebugger" ,
23+ srcs = glob ([
24+ "*.swift" ,
25+ ]),
26+ data = [
27+ ":Assets" ,
28+ ],
29+ module_name = "InAppViewDebugger" ,
30+ )
31+
32+ ios_static_framework (
33+ name = "InAppViewDebuggerFramework" ,
34+ bundle_name = "InAppViewDebugger" ,
35+ minimum_os_version = "11.0" ,
36+ deps = [
37+ ":InAppViewDebugger" ,
38+ ],
39+ )
Original file line number Diff line number Diff line change 1+ workspace (name = "InAppViewDebugger" )
You can’t perform that action at this time.
0 commit comments